summaryrefslogtreecommitdiff
path: root/disabled_protos.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-07-23 11:41:25 +0000
committerJörg Mayer <jmayer@loplof.de>2005-07-23 11:41:25 +0000
commit30a855786822f15108e3a9d4dbd5579cd656abba (patch)
tree88cde02c2a8b79acb9a58e94d44b2cc686e12e9e /disabled_protos.c
parentcb4ac62893d38d74efc89f5d5c90c7451dc421a4 (diff)
downloadwireshark-30a855786822f15108e3a9d4dbd5579cd656abba.tar.gz
More 'char*' -> 'const char*' changes to fix warnings.
svn path=/trunk/; revision=15015
Diffstat (limited to 'disabled_protos.c')
-rw-r--r--disabled_protos.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/disabled_protos.c b/disabled_protos.c
index cc11ad0de9..19045431db 100644
--- a/disabled_protos.c
+++ b/disabled_protos.c
@@ -317,11 +317,12 @@ skip:
void
save_disabled_protos_list(char **pref_path_return, int *errno_return)
{
- gchar *ff_path, *ff_path_new, *ff_name;
- FILE *ff;
- gint i;
- protocol_t *protocol;
- void *cookie;
+ gchar *ff_path, *ff_path_new;
+ const gchar *ff_name;
+ FILE *ff;
+ gint i;
+ protocol_t *protocol;
+ void *cookie;
*pref_path_return = NULL; /* assume no error */