From f55897af74ac072d3447e5cf513d0f4718b142c7 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Wed, 10 Oct 2007 11:41:57 +0100 Subject: Use DBUS_ERROR_INIT instead of dbus_error_init wherever it's clearly equivalent --- dbus/dbus-spawn-win.c | 32 ++++++++------------------------ 1 file changed, 8 insertions(+), 24 deletions(-) (limited to 'dbus/dbus-spawn-win.c') diff --git a/dbus/dbus-spawn-win.c b/dbus/dbus-spawn-win.c index 5ab85164..c2ad16bb 100644 --- a/dbus/dbus-spawn-win.c +++ b/dbus/dbus-spawn-win.c @@ -621,12 +621,8 @@ static dbus_bool_t check_spawn_nonexistent (void *data) { char *argv[4] = { NULL, NULL, NULL, NULL }; - DBusBabysitter *sitter; - DBusError error; - - sitter = NULL; - - dbus_error_init (&error); + DBusBabysitter *sitter = NULL; + DBusError error = DBUS_ERROR_INIT; /*** Test launching nonexistent binary */ @@ -666,12 +662,8 @@ static dbus_bool_t check_spawn_segfault (void *data) { char *argv[4] = { NULL, NULL, NULL, NULL }; - DBusBabysitter *sitter; - DBusError error; - - sitter = NULL; - - dbus_error_init (&error); + DBusBabysitter *sitter = NULL; + DBusError error = DBUS_ERROR_INIT; /*** Test launching segfault binary */ @@ -711,12 +703,8 @@ static dbus_bool_t check_spawn_exit (void *data) { char *argv[4] = { NULL, NULL, NULL, NULL }; - DBusBabysitter *sitter; - DBusError error; - - sitter = NULL; - - dbus_error_init (&error); + DBusBabysitter *sitter = NULL; + DBusError error = DBUS_ERROR_INIT; /*** Test launching exit failure binary */ @@ -756,12 +744,8 @@ static dbus_bool_t check_spawn_and_kill (void *data) { char *argv[4] = { NULL, NULL, NULL, NULL }; - DBusBabysitter *sitter; - DBusError error; - - sitter = NULL; - - dbus_error_init (&error); + DBusBabysitter *sitter = NULL; + DBusError error = DBUS_ERROR_INIT; /*** Test launching sleeping binary then killing it */ -- cgit