From 60cf81f63e1bed95f9c109e9c31fcd118fb4d5e9 Mon Sep 17 00:00:00 2001 From: sebastid Date: Sat, 7 Jan 2006 17:39:28 +0000 Subject: [PATCH] Fix warning. SVN revision: 19616 --- src/bin/e_utils.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/e_utils.c b/src/bin/e_utils.c index 151f62280..58a293bcb 100644 --- a/src/bin/e_utils.c +++ b/src/bin/e_utils.c @@ -137,7 +137,8 @@ e_util_glob_match(const char *str, const char *glob) EAPI int e_util_glob_case_match(const char *str, const char *glob) { - char *tstr, *tglob, *p, *tp; + const char *p; + char *tstr, *tglob, *tp; if (glob[0] == 0) {