fix some curly braces that were on the wrong line

2007-12-18  Havoc Pennington  <hp@redhat.com>

	* dbus/dbus-connection.c (_dbus_connection_block_pending_call):
	fix location of curly braces
This commit is contained in:
Havoc Pennington 2007-12-18 15:20:17 -05:00
parent ed47b4502b
commit 047ec880e9
2 changed files with 10 additions and 4 deletions

View file

@ -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

View 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);