mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-06 16:18:11 +02:00
_dbus_verbose_real: tidy conditional prototype to not break nesting
The mismatched opening parenthesis caused vim syntax highlighting to consider every subsequent brace in the file to be an error, which was pretty annoying. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=46095 Reviewed-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
This commit is contained in:
parent
bed34738fc
commit
1e0f4b52bf
1 changed files with 3 additions and 4 deletions
|
|
@ -390,14 +390,13 @@ _dbus_is_verbose_real (void)
|
|||
* @param format printf-style format string.
|
||||
*/
|
||||
void
|
||||
_dbus_verbose_real (
|
||||
#ifdef DBUS_CPP_SUPPORTS_VARIABLE_MACRO_ARGUMENTS
|
||||
_dbus_verbose_real (const char *file,
|
||||
const char *file,
|
||||
const int line,
|
||||
const char *function,
|
||||
const char *format,
|
||||
#else
|
||||
_dbus_verbose_real (const char *format,
|
||||
#endif
|
||||
const char *format,
|
||||
...)
|
||||
{
|
||||
va_list args;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue