The printf format may require 2 arguments passed and if it does, the second argument could be garbage, so make sure printf has 2 arguments. Fixes bug 8066 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8066)

svn path=/trunk/; revision=49451
This commit is contained in:
Michael Mann 2013-05-20 18:50:50 +00:00
parent 9327da8ffa
commit 312daa4f6c
1 changed files with 1 additions and 1 deletions

View File

@ -1080,7 +1080,7 @@ iostat_draw(void *arg)
item_in_column[j] = item_in_column[j]->next;
}
} else {
printf(fmt, (guint64)0);
printf(fmt, (guint64)0, (guint64)0);
}
}
if (filler_s)