_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:
Simon McVittie 2011-07-26 16:03:20 +01:00
parent bed34738fc
commit 1e0f4b52bf

View file

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