aboutsummaryrefslogtreecommitdiffstats
path: root/color_filters.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2006-10-10 08:07:14 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2006-10-10 08:07:14 +0000
commit82b062ddeabfad9b7ead0dbe36ab75c10ee924e4 (patch)
tree748934b0ef33c9a24ea69137505edd426055f560 /color_filters.c
parent46e7e2d1c15205023f37cf039e0d70e58202c809 (diff)
Fix some compiler warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19470 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'color_filters.c')
-rw-r--r--color_filters.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/color_filters.c b/color_filters.c
index 1cf34806f0..9979783be1 100644
--- a/color_filters.c
+++ b/color_filters.c
@@ -127,8 +127,9 @@ color_filter_clone(color_filter_t *colorf)
}
static void
-color_filter_list_clone_cb(gpointer filter_arg, gpointer *cfl)
+color_filter_list_clone_cb(gpointer filter_arg, gpointer cfl_arg)
{
+ gpointer *cfl = cfl_arg;
color_filter_t *new_colorf;
new_colorf = color_filter_clone(filter_arg);
@@ -182,7 +183,7 @@ color_filters_clone(gpointer user_data)
static void
-color_filter_compile_cb(gpointer filter_arg, gpointer *cfl)
+color_filter_compile_cb(gpointer filter_arg, gpointer unused _U_)
{
color_filter_t *colorf = filter_arg;