aboutsummaryrefslogtreecommitdiffstats
path: root/color_filters.h
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-05 20:59:08 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-05 20:59:08 +0000
commitd06dc1b883b2a87311266965ac864a9498bc5660 (patch)
tree0aeebf0f2c4ec7ea3813d2f0b9e10f3f77e851cd /color_filters.h
parent00063715b01b8825ed812a3d92dbb5a25fd48d86 (diff)
More char -> const char warning fixes.
Removed (very few) casts that only change the warning message but don't remove it (with gcc-4). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15227 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'color_filters.h')
-rw-r--r--color_filters.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/color_filters.h b/color_filters.h
index 46646d05b6..17ab753e08 100644
--- a/color_filters.h
+++ b/color_filters.h
@@ -108,7 +108,7 @@ color_filters_colorize_packet(gint row, epan_dissect_t *edt);
* @param fg_color foreground color
* @return the new color filter
*/
-color_filter_t *color_filter_new(gchar *name, gchar *filter_string,
+color_filter_t *color_filter_new(const gchar *name, const gchar *filter_string,
color_t *bg_color, color_t *fg_color);
/** Remove the color filter.