aboutsummaryrefslogtreecommitdiffstats
path: root/extcap/randpktdump.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2016-07-16 22:29:35 -0400
committerMichael Mann <mmann78@netscape.net>2016-07-17 13:10:37 +0000
commitdb1e0bcf65e2a1cd4f4e5fedf09247562ac1a607 (patch)
treee7fc718cf6e4117859d87074f06789f1fa91ae70 /extcap/randpktdump.c
parent25dfe445a109bbeaf38e6394f81a3bc2880850a3 (diff)
Fix printf style parameters complaints from VS Code Analysis
Change-Id: I5669e2442582f899643fae4a9f86ab6d505dde07 Reviewed-on: https://code.wireshark.org/review/16505 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'extcap/randpktdump.c')
-rw-r--r--extcap/randpktdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extcap/randpktdump.c b/extcap/randpktdump.c
index 0235470883..016bcf6768 100644
--- a/extcap/randpktdump.c
+++ b/extcap/randpktdump.c
@@ -207,7 +207,7 @@ int main(int argc, char *argv[])
case OPT_MAXBYTES:
maxbytes = atoi(optarg);
if (maxbytes > MAXBYTES_LIMIT) {
- errmsg_print("randpktdump: Max bytes is %u", MAXBYTES_LIMIT);
+ errmsg_print("randpktdump: Max bytes is %d", MAXBYTES_LIMIT);
goto end;
}
break;