[empathy] Fix bracket style



commit 07d6f0088b1428c6c64b4625c42f36e93cafa267
Author: Pierre-Luc Beaudoin <pierre-luc beaudoin collabora co uk>
Date:   Fri May 29 15:38:31 2009 -0400

    Fix bracket style
---
 libempathy-gtk/empathy-location-manager.c |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/libempathy-gtk/empathy-location-manager.c b/libempathy-gtk/empathy-location-manager.c
index f26a8d2..ae234ee 100644
--- a/libempathy-gtk/empathy-location-manager.c
+++ b/libempathy-gtk/empathy-location-manager.c
@@ -362,8 +362,10 @@ initial_position_cb (GeocluePosition *position,
       g_error_free (error);
     }
   else
-    position_changed_cb (position, fields, timestamp, latitude, longitude,
-      altitude, accuracy, location_manager);
+    {
+      position_changed_cb (position, fields, timestamp, latitude, longitude,
+          altitude, accuracy, location_manager);
+    }
 }
 
 static void
@@ -466,7 +468,9 @@ initial_address_cb (GeoclueAddress *address,
       g_error_free (error);
     }
   else
-    address_changed_cb (address, timestamp, details, accuracy, location_manager);
+    {
+      address_changed_cb (address, timestamp, details, accuracy, location_manager);
+    }
 }
 
 static void
@@ -634,7 +638,9 @@ accuracy_cb (EmpathyConf  *conf,
       g_rand_free (rand);
     }
   else
-    priv->reduce_value = 0.0;
+    {
+      priv->reduce_value = 0.0;
+    }
 
   if (!priv->geoclue_is_setup)
     return;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]