diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2011-05-01 21:06:16 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2011-05-01 21:06:16 -0400 |
commit | beecf8f88188391132d30b940c2a312ecaebba3a (patch) | |
tree | 91048009ed85c20a97494fd1e183c5c5d11898e4 /pango/pango-utils.c | |
parent | 9003800c297781223828c5d5e537aa34391c17ca (diff) | |
download | pango-beecf8f88188391132d30b940c2a312ecaebba3a.tar.gz |
Fix compiler warnings
Diffstat (limited to 'pango/pango-utils.c')
-rw-r--r-- | pango/pango-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pango-utils.c b/pango/pango-utils.c index 052da9cb..4e95b956 100644 --- a/pango/pango-utils.c +++ b/pango/pango-utils.c @@ -726,7 +726,7 @@ pango_get_sysconf_subdirectory (void) G_CONST_RETURN char * pango_get_lib_subdirectory (void) { - static gchar *result = NULL; + static const gchar *result = NULL; if (result == NULL) { |