diff options
author | Benjamin Otte <otte@redhat.com> | 2012-10-02 19:23:29 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-10-02 19:32:51 +0200 |
commit | 12683da8f74e847392fff32d4b06dd2c50baa37c (patch) | |
tree | 2d340c4f85871d60404e6911062e6d08b54a83fc /gtk/updateiconcache.c | |
parent | 48c6b3b4f4c7eaf99e10302d17e78838f1eac010 (diff) | |
download | gtk+-12683da8f74e847392fff32d4b06dd2c50baa37c.tar.gz |
gtk: Make functions static that don't need to be non-static
Also remove the starting underscore from function names where
appropriate, as those functions are static now and not exported anymore.
This is part of a bunch of fixes for gcc complaining about
-Wmissing-declarations.
Diffstat (limited to 'gtk/updateiconcache.c')
-rw-r--r-- | gtk/updateiconcache.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/updateiconcache.c b/gtk/updateiconcache.c index 2fe910b1bc..4159c9337a 100644 --- a/gtk/updateiconcache.c +++ b/gtk/updateiconcache.c @@ -88,9 +88,9 @@ static int check_dir_mtime (const char *dir, return 0; } - gboolean - is_cache_up_to_date (const gchar *path) - { +static gboolean +is_cache_up_to_date (const gchar *path) +{ gchar *cache_path; gint retval; |