Don't give names to parameters you don't use.

C++, unlike C, lets you do that.  This squelches warnings from MSVC++.

Change-Id: Id7127392b7690769111afdb951951d743f1d5e63
Reviewed-on: https://code.wireshark.org/review/4019
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2014-09-06 15:58:54 -07:00
parent d853e92b75
commit 24d1295720
1 changed files with 1 additions and 1 deletions

View File

@ -2160,7 +2160,7 @@ void IOGraph::tapDraw(void *iog_ptr)
// Stat command + args
static void
io_graph_init(const char *opt_arg _U_, void* userdata _U_) {
io_graph_init(const char *, void*) {
wsApp->emitStatCommandSignal("IOGraph", NULL, NULL);
}