aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2008-06-23 20:17:08 +0000
committerGuy Harris <guy@alum.mit.edu>2008-06-23 20:17:08 +0000
commit4d879cd0b8d357a3ed4ab3b2205a5a8e4672ec12 (patch)
treeef872467ebf1494017bf04d9b08d2285f34d8d4a /epan/epan.h
parent094911ef4f5a50e24c5827b37cf4141a11a9c28d (diff)
Rename arguments not to collide with function names, to avoid warnings
from -Wshadow, as noted by John Smith. svn path=/trunk/; revision=25541
Diffstat (limited to 'epan/epan.h')
-rw-r--r--epan/epan.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/epan.h b/epan/epan.h
index 708510d82d..c8b72d080b 100644
--- a/epan/epan.h
+++ b/epan/epan.h
@@ -34,8 +34,8 @@ typedef struct _epan_dissect_t epan_dissect_t;
#include "dfilter/dfilter.h"
/* init the whole epan module, this is used to be called only once in a program */
-void epan_init(void (*register_all_protocols)(register_cb cb, gpointer client_data),
- void (*register_all_handoffs)(register_cb cb, gpointer client_data),
+void epan_init(void (*register_all_protocols_func)(register_cb cb, gpointer client_data),
+ void (*register_all_handoffs_func)(register_cb cb, gpointer client_data),
register_cb cb,
void *client_data,
void (*report_failure)(const char *, va_list),