From e04c193c57abeef1625a00105e1bef87e109856f Mon Sep 17 00:00:00 2001 From: rephorm Date: Mon, 25 Sep 2006 05:39:50 +0000 Subject: [PATCH] make these static const SVN revision: 26135 --- legacy/ecore/src/lib/ecore_dbus/ecore_dbus_address.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/ecore/src/lib/ecore_dbus/ecore_dbus_address.c b/legacy/ecore/src/lib/ecore_dbus/ecore_dbus_address.c index 8111177b0c..75ebae2ecd 100644 --- a/legacy/ecore/src/lib/ecore_dbus/ecore_dbus_address.c +++ b/legacy/ecore/src/lib/ecore_dbus/ecore_dbus_address.c @@ -272,7 +272,7 @@ static int _ecore_dbus_address_value_char_optional_encode(char c) { /* addl optional chars (other than 0-9A-Za-z) */ - char OPTIONAL_CHARS[] = {'_', '-', '/', '.', '\\'}; + static const char OPTIONAL_CHARS[] = {'_', '-', '/', '.', '\\'}; int i; if (isascii(c) && (isalpha(c) || isdigit(c))) return 1; @@ -291,7 +291,7 @@ _ecore_dbus_address_value_encode(const char *value) const char *p; int i; - const char hexdigits[16] = { + static const char hexdigits[16] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };