diff options
author | Jörg Mayer <jmayer@loplof.de> | 2005-08-06 14:03:14 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2005-08-06 14:03:14 +0000 |
commit | 62b7cc3043f63836ab26d866ba5885a11c409ebf (patch) | |
tree | 3fa68dbd08f38db924425656b41d4a8fec6c7fff /util.c | |
parent | fd79f5eb9c0b67692734eb2f30a8c3742f918ccd (diff) | |
download | wireshark-62b7cc3043f63836ab26d866ba5885a11c409ebf.tar.gz wireshark-62b7cc3043f63836ab26d866ba5885a11c409ebf.tar.bz2 wireshark-62b7cc3043f63836ab26d866ba5885a11c409ebf.zip |
Last set of char -> const char trivial warning fixes.
svn path=/trunk/; revision=15244
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -112,7 +112,7 @@ get_args_as_string(int argc, char **argv, int optind) } static char * -setup_tmpdir(char *dir) +setup_tmpdir(const char *dir) { int len = strlen(dir); char *newdir; @@ -266,7 +266,7 @@ compute_timestamp_diff(gint *diffsec, gint *diffusec, CLIENTNAME (terminal server): <remote name> */ -gchar *get_conn_cfilter(void) { +const gchar *get_conn_cfilter(void) { static GString *filter_str = NULL; gchar *env, **tokens; |