aboutsummaryrefslogtreecommitdiffstats
path: root/filters.h
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-08-06 14:03:14 +0000
committerJörg Mayer <jmayer@loplof.de>2005-08-06 14:03:14 +0000
commit62b7cc3043f63836ab26d866ba5885a11c409ebf (patch)
tree3fa68dbd08f38db924425656b41d4a8fec6c7fff /filters.h
parentfd79f5eb9c0b67692734eb2f30a8c3742f918ccd (diff)
Last set of char -> const char trivial warning fixes.
svn path=/trunk/; revision=15244
Diffstat (limited to 'filters.h')
-rw-r--r--filters.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/filters.h b/filters.h
index d059c8cc80..239b775679 100644
--- a/filters.h
+++ b/filters.h
@@ -47,7 +47,7 @@ typedef struct {
* the file we tried to read - it should be freed by our caller -
* and "*errno_return" is set to the error.
*/
-void read_filter_list(filter_list_type_t list, char **pref_path_return,
+void read_filter_list(filter_list_type_t list, const char **pref_path_return,
int *errno_return);
/*
@@ -75,5 +75,5 @@ void remove_from_filter_list(filter_list_type_t list, GList *fl_entry);
* the file we tried to read - it should be freed by our caller -
* and "*errno_return" is set to the error.
*/
-void save_filter_list(filter_list_type_t list, char **pref_path_return,
+void save_filter_list(filter_list_type_t list, const char **pref_path_return,
int *errno_return);