goid-tool: Fix wrong printf arguments

This argument should be of type 'wchar_t *' but is of type 'unsigned short *'

Thanks lgtm
This commit is contained in:
Jakub Jelen 2020-03-03 10:58:38 +01:00 committed by Frank Morgner
parent 0a610319bd
commit 6638949513
1 changed files with 1 additions and 1 deletions

View File

@ -417,7 +417,7 @@ static int print_info(sc_card_t *card) {
}
for (i = 0; i < cmaprecordnum; i++) {
printf(" container: %d\n", i);
wprintf(L" guid: %ls\n", cmaprecords[i].wszGuid);
wprintf(L" guid: %s\n", cmaprecords[i].wszGuid);
printf(" bFlags: ");
if (cmaprecords[i].bFlags & CONTAINER_MAP_VALID_CONTAINER) {
printf("Valid container");