make these static const
authorrephorm <rephorm>
Mon, 25 Sep 2006 05:39:50 +0000 (05:39 +0000)
committerrephorm <rephorm@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 25 Sep 2006 05:39:50 +0000 (05:39 +0000)
SVN revision: 26135

legacy/ecore/src/lib/ecore_dbus/ecore_dbus_address.c

index 8111177..75ebae2 100644 (file)
@@ -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'
    };