summaryrefslogtreecommitdiff
path: root/editcap.c
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2014-01-17 20:06:39 +0000
committerMartin Kaiser <wireshark@kaiser.cx>2014-01-17 20:06:39 +0000
commitc852f994eac3c0b438e6e768af6e7ef3669ee602 (patch)
tree182783235ed5cee3c611c4190f11039dfb4b3999 /editcap.c
parent90ea235292d7f165ff95d64345e55a16364ae5aa (diff)
downloadwireshark-c852f994eac3c0b438e6e768af6e7ef3669ee602.tar.gz
From Toralf Förster
fix format strings for signed integers https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9637 svn path=/trunk/; revision=54835
Diffstat (limited to 'editcap.c')
-rw-r--r--editcap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editcap.c b/editcap.c
index a208bd70aa..2a62995847 100644
--- a/editcap.c
+++ b/editcap.c
@@ -1596,7 +1596,7 @@ main(int argc, char *argv[])
}
if (dup_detect) {
- fprintf(stdout, "%u packet%s seen, %u packet%s skipped with duplicate window of %u packets.\n",
+ fprintf(stdout, "%u packet%s seen, %u packet%s skipped with duplicate window of %i packets.\n",
count - 1, plurality(count - 1, "", "s"), duplicate_count,
plurality(duplicate_count, "", "s"), dup_window);
} else if (dup_detect_by_time) {