fix some curly braces that were on the wrong line
authorHavoc Pennington <hp@pobox.com>
Tue, 18 Dec 2007 20:20:17 +0000 (15:20 -0500)
committerHavoc Pennington <hp@pobox.com>
Tue, 18 Dec 2007 20:20:17 +0000 (15:20 -0500)
2007-12-18  Havoc Pennington  <hp@redhat.com>

* dbus/dbus-connection.c (_dbus_connection_block_pending_call):
fix location of curly braces

ChangeLog
dbus/dbus-connection.c

index a66ce96..35e35a7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-12-18  Havoc Pennington  <hp@redhat.com>
+
+       * dbus/dbus-connection.c (_dbus_connection_block_pending_call):
+       fix location of curly braces
+
 2007-11-23  Sjoerd Simons  <sjoerd@luon.net>
 
        * tools/dbus-launch.c: let both a normal dbus-launch and an
index e6848c1..0de5f22 100644 (file)
@@ -2288,10 +2288,11 @@ _dbus_connection_block_pending_call (DBusPendingCall *pending)
       return;
     }
   
-  if (status == DBUS_DISPATCH_DATA_REMAINS) {
-    if (check_for_reply_and_update_dispatch_unlocked (connection, pending))
-      return;
-  }
+  if (status == DBUS_DISPATCH_DATA_REMAINS)
+    {
+      if (check_for_reply_and_update_dispatch_unlocked (connection, pending))
+        return;
+    }
   
   _dbus_get_current_time (&tv_sec, &tv_usec);