small cleanup
authorMatthias Clasen <matthiasc@src.gnome.org>
Fri, 27 Apr 2007 22:37:49 +0000 (22:37 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 27 Apr 2007 22:37:49 +0000 (22:37 +0000)
svn path=/trunk/; revision=5465

ChangeLog
glib/gstrfuncs.c

index 6552122..775f37d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-04-27  Matthias Clasen <mclasen@redhat.com>
+
+       * glib/gstrfuncs.c: small coding style cleanups.
+
 2007-04-27  Chris Wilson  <chris@chris-wilson.co.uk>
 
        * glib/gregex.h: Remove trailing comma at end of enumerator list.
index d95c85d..c75daad 100644 (file)
@@ -610,13 +610,12 @@ g_ascii_formatd (gchar       *buffer,
        {
          *p = '.';
          p++;
-         if (decimal_point_len > 1) {
-           rest_len = strlen (p + (decimal_point_len-1));
-           memmove (p, p + (decimal_point_len-1),
-                    rest_len);
-           p[rest_len] = 0;
-           
-         }
+         if (decimal_point_len > 1) 
+            {
+             rest_len = strlen (p + (decimal_point_len-1));
+             memmove (p, p + (decimal_point_len-1), rest_len);
+             p[rest_len] = 0;
+           }
        }
     }
   
@@ -2428,8 +2427,8 @@ g_strfreev (gchar **str_array)
     {
       int i;
 
-      for(i = 0; str_array[i] != NULL; i++)
-       g_free(str_array[i]);
+      for (i = 0; str_array[i] != NULL; i++)
+       g_free (str_array[i]);
 
       g_free (str_array);
     }