mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-04-25 03:50:49 +02:00
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:
parent
ed47b4502b
commit
047ec880e9
2 changed files with 10 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue