aboutsummaryrefslogtreecommitdiffstats
path: root/color_filters.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-08-05 20:59:08 +0000
committerJörg Mayer <jmayer@loplof.de>2005-08-05 20:59:08 +0000
commit4e1f4b18abdec1658e835a77a9de8be87c965142 (patch)
tree0aeebf0f2c4ec7ea3813d2f0b9e10f3f77e851cd /color_filters.c
parente6856b69f3ebf85a1a37cb7c7a508f2be41fb1fe (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). svn path=/trunk/; revision=15227
Diffstat (limited to 'color_filters.c')
-rw-r--r--color_filters.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/color_filters.c b/color_filters.c
index ef72946dcd..ff8d43339a 100644
--- a/color_filters.c
+++ b/color_filters.c
@@ -111,8 +111,8 @@ color_filters_init(void)
/* Create a new filter */
color_filter_t *
-color_filter_new(gchar *name, /* The name of the filter to create */
- gchar *filter_string, /* The string representing the filter */
+color_filter_new(const gchar *name, /* The name of the filter to create */
+ const gchar *filter_string, /* The string representing the filter */
color_t *bg_color, /* The background color */
color_t *fg_color) /* The foreground color */
{