Adapt to GLib coding standards.
authorSebastian Wilhelmi <wilhelmi@google.com>
Wed, 10 May 2006 23:58:27 +0000 (23:58 +0000)
committerSebastian Wilhelmi <wilhelmi@src.gnome.org>
Wed, 10 May 2006 23:58:27 +0000 (23:58 +0000)
2006-05-10  Sebastian Wilhelmi  <wilhelmi@google.com>

* tests/errorcheck-mutex-test.c: Adapt to GLib coding standards.

ChangeLog
ChangeLog.pre-2-12
tests/errorcheck-mutex-test.c

index 39e8010..237a103 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-05-10  Sebastian Wilhelmi  <wilhelmi@google.com>
+
+       * tests/errorcheck-mutex-test.c: Adapt to GLib coding standards.
+
 2006-05-09  Sebastian Wilhelmi  <wilhelmi@google.com>
 
        * glib/gthreadinit.h: Renamed to glib/gthreadprivate.h and moved
index 39e8010..237a103 100644 (file)
@@ -1,3 +1,7 @@
+2006-05-10  Sebastian Wilhelmi  <wilhelmi@google.com>
+
+       * tests/errorcheck-mutex-test.c: Adapt to GLib coding standards.
+
 2006-05-09  Sebastian Wilhelmi  <wilhelmi@google.com>
 
        * glib/gthreadinit.h: Renamed to glib/gthreadprivate.h and moved
index a245299..eab9513 100644 (file)
@@ -108,24 +108,24 @@ main (int argc, char* argv[])
   int i;
 
   if (argc == 2)
-  {
-    for (i = 0; i < G_N_ELEMENTS (func_table); i++)
     {
-      if (strcmp (func_table[i].name, argv[1]) == 0)
-      {
-        g_thread_init (NULL);
-        func_table[i].func ();
-        g_assert_not_reached ();
-      }
+      for (i = 0; i < G_N_ELEMENTS (func_table); i++)
+        {
+          if (strcmp (func_table[i].name, argv[1]) == 0)
+            {
+              g_thread_init (NULL);
+              func_table[i].func ();
+              g_assert_not_reached ();
+            }
+        }
     }
-  }
 
   fprintf (stderr, "Usage: errorcheck-mutex-test [TEST]\n\n");
   fprintf (stderr, "   where TEST can be one of:\n\n");
   for (i = 0; i < G_N_ELEMENTS (func_table); i++)
-  {
-    fprintf (stderr, "      %s\n", func_table[i].name);
-  }
+    {
+      fprintf (stderr, "      %s\n", func_table[i].name);
+    }
 
   return 0;
 }