Fix double printing function name in _dbus_verbose() messages.

Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=98089
This commit is contained in:
Ralf Habacker 2016-10-05 13:00:49 +02:00
parent d36d1b9d10
commit 487a26f72d
3 changed files with 4 additions and 4 deletions

View file

@ -305,7 +305,7 @@ void
_dbus_set_signal_handler (int sig,
DBusSignalHandler handler)
{
_dbus_verbose ("_dbus_set_signal_handler() has to be implemented\n");
_dbus_verbose ("has to be implemented\n");
}
/**

View file

@ -507,7 +507,7 @@ _dbus_close_socket (DBusSocket fd,
fd.sock, _dbus_strerror_from_errno ());
return FALSE;
}
_dbus_verbose ("_dbus_close_socket: socket=%Iu, \n", fd.sock);
_dbus_verbose ("socket=%Iu, \n", fd.sock);
return TRUE;
}

View file

@ -1146,9 +1146,9 @@ _dbus_transport_queue_messages (DBusTransport *transport)
DBusDispatchStatus status;
#if 0
_dbus_verbose ("_dbus_transport_queue_messages()\n");
_dbus_verbose ("enter\n");
#endif
/* Queue any messages */
while ((status = _dbus_transport_get_dispatch_status (transport)) == DBUS_DISPATCH_DATA_REMAINS)
{