build: Add missing "static" keyword where it should be used
authorColin Walters <walters@verbum.org>
Thu, 1 Nov 2012 23:35:38 +0000 (19:35 -0400)
committerColin Walters <walters@verbum.org>
Fri, 2 Nov 2012 00:12:01 +0000 (20:12 -0400)
Otherwise we fail to build with -Werror=missing-prototypes.

https://bugzilla.gnome.org/show_bug.cgi?id=687385

gio/gdbusactiongroup.c
gio/gtestdbus.c
gio/tests/gdbus-peer-object-manager.c
gio/tests/gdbus-peer.c
gio/tests/resources.c
tests/libmoduletestplugin_a.c
tests/libmoduletestplugin_b.c
tests/testgdate.c
tests/testgdateparser.c
tests/unicode-collate.c

index b1c7649..e17b6c7 100644 (file)
@@ -92,7 +92,7 @@ action_info_free (gpointer user_data)
   g_slice_free (ActionInfo, info);
 }
 
-ActionInfo *
+static ActionInfo *
 action_info_new_from_iter (GVariantIter *iter)
 {
   const gchar *param_str;
index c2f91eb..6bb98cf 100644 (file)
@@ -74,7 +74,7 @@ unref_on_idle (gpointer object)
   return FALSE;
 }
 
-gboolean
+static gboolean
 _g_object_unref_and_wait_weak_notify (gpointer object)
 {
   WeakNotifyData data;
index 89537cc..908003b 100644 (file)
@@ -84,7 +84,7 @@ mock_interface_get_info (GDBusInterfaceSkeleton *skeleton)
   return &interface_info;
 }
 
-GVariant *
+static GVariant *
 mock_interface_get_property (GDBusConnection *connection,
                              const gchar *sender,
                              const gchar *object_path,
index 0435597..917c888 100644 (file)
@@ -1682,7 +1682,7 @@ codegen_service_thread_func (gpointer user_data)
 }
 
 
-gboolean
+static gboolean
 codegen_quit_mainloop_timeout (gpointer data)
 {
   g_main_loop_quit (loop);
index d21513b..f7a7e83 100644 (file)
@@ -487,7 +487,7 @@ test_uri_query_info (void)
   g_resource_unref (resource);
 }
 
-void
+static void
 test_uri_file (void)
 {
   GResource *resource;
index 150d50d..69fdd0f 100644 (file)
 #include       <gmodule.h>
 #include       <stdlib.h>
 
+void gplugin_a_func (void);
+void gplugin_clash_func (void);
+void g_clash_func (void);
+void gplugin_say_boo_func (void);
+void gplugin_a_module_func (GModule *module);
+
 G_MODULE_EXPORT gchar* gplugin_a_state;
 
 G_MODULE_EXPORT void
index 26e065d..26cc33f 100644 (file)
 
 G_MODULE_EXPORT gchar* gplugin_b_state;
 
+const gchar* g_module_check_init (GModule *module);
+void   g_module_unload (GModule *module);
+
+void gplugin_b_func (void);
+void gplugin_clash_func (void);
+void g_clash_func (void);
+void gplugin_say_boo_func (void);
+
 G_MODULE_EXPORT const gchar*
 g_module_check_init (GModule *module)
 {
index 85d22dc..f5fc435 100644 (file)
@@ -29,7 +29,8 @@ else \
   if ((passed+notpassed) % 10000 == 0) g_print ("."); fflush (stdout); \
 } G_STMT_END
 
-void g_date_debug_print(GDate* d)
+static void
+g_date_debug_print (GDate* d)
 {
   if (!d) g_print("NULL!\n");
   else 
index f0e284a..ab94bcb 100644 (file)
@@ -11,7 +11,8 @@
 #include <string.h>
 #include <locale.h>
 
-void g_date_debug_print(GDate* d)
+static void
+g_date_debug_print (GDate* d)
 {
   if (!d) g_print("NULL!\n");
   else 
index 785f169..b276a2f 100644 (file)
@@ -13,7 +13,7 @@ typedef struct {
 } Line;
   
 
-int 
+static int 
 compare_collate (const void *a, const void *b)
 {
   const Line *line_a = a;
@@ -22,7 +22,7 @@ compare_collate (const void *a, const void *b)
   return g_utf8_collate (line_a->str, line_b->str);
 }
 
-int 
+static int 
 compare_key (const void *a, const void *b)
 {
   const Line *line_a = a;