entry_data.type is unsigned, so print it with %u.

This should squelch a warning from VS Code Analyzer.

Change-Id: I69e528c3dfd851d287b1faebc1469cd700fa9ef5
Reviewed-on: https://code.wireshark.org/review/26402
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2018-03-09 11:28:00 -08:00
parent 5a4468ccaf
commit 190b2e89c3
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ main(int argc, char *argv[])
fprintf(stdout, ": %f\n", entry_data.float_value);
break;
default:
fprintf(stdout, ": UNKNOWN (%d)\n", entry_data.type);
fprintf(stdout, ": UNKNOWN (%u)\n", entry_data.type);
}
}
}