summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRalf Habacker <ralf.habacker@freenet.de>2007-03-04 19:14:04 +0000
committerRalf Habacker <ralf.habacker@freenet.de>2007-03-04 19:14:04 +0000
commit329f99a197819ac3978c409b1b9f4ef68297a825 (patch)
tree192f53f7b583c5ff5d6f21ce6ffbf07f1006b139 /test
parent7f3af4748f8deff75fce6dd50d0005aadfd4985c (diff)
* dbus/dbus-spawn.c,dbus/dbus-spawn.h (_dbus_spawn_async_with_babysitter):
added environment pointer as function parameter,used on win32. * test/spawn-test.c: fixed call to above mentioned function.
Diffstat (limited to 'test')
-rw-r--r--test/spawn-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/spawn-test.c b/test/spawn-test.c
index f323368f..991a5e83 100644
--- a/test/spawn-test.c
+++ b/test/spawn-test.c
@@ -31,7 +31,7 @@ main (int argc, char **argv)
argv_copy [i] = argv[i + 1];
argv_copy[argc - 1] = NULL;
- if (!_dbus_spawn_async_with_babysitter (NULL, argv_copy, setup_func, NULL, &error))
+ if (!_dbus_spawn_async_with_babysitter (NULL, argv_copy, NULL, setup_func, NULL, &error))
{
fprintf (stderr, "Could not launch application: \"%s\"\n",
error.message);