aboutsummaryrefslogtreecommitdiff
path: root/src/statistics
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-02-16 12:19:23 +0000
committerNathan S. Evans <evans@in.tum.de>2010-02-16 12:19:23 +0000
commitdfeff1e1c0fc366a6d7c6c8e85cf8621a0eaa181 (patch)
treec7f297d164fb72e7b9509eb23766854de3cb4cc6 /src/statistics
parent08ec0685c2005fd9cda43313965dfac08435d548 (diff)
downloadgnunet-dfeff1e1c0fc366a6d7c6c8e85cf8621a0eaa181.tar.gz
gnunet-dfeff1e1c0fc366a6d7c6c8e85cf8621a0eaa181.zip
add args for GNUNET_OS_start_process's
Diffstat (limited to 'src/statistics')
-rw-r--r--src/statistics/test_statistics_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/statistics/test_statistics_api.c b/src/statistics/test_statistics_api.c
index e8c673eae..8a4a5e911 100644
--- a/src/statistics/test_statistics_api.c
+++ b/src/statistics/test_statistics_api.c
@@ -129,7 +129,7 @@ check ()
129 struct GNUNET_GETOPT_CommandLineOption options[] = { 129 struct GNUNET_GETOPT_CommandLineOption options[] = {
130 GNUNET_GETOPT_OPTION_END 130 GNUNET_GETOPT_OPTION_END
131 }; 131 };
132 pid = GNUNET_OS_start_process ("gnunet-service-statistics", 132 pid = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-statistics",
133 "gnunet-service-statistics", 133 "gnunet-service-statistics",
134#if DEBUG_STATISTICS 134#if DEBUG_STATISTICS
135 "-L", "DEBUG", 135 "-L", "DEBUG",
@@ -147,7 +147,7 @@ check ()
147 return ok; 147 return ok;
148 ok = 1; 148 ok = 1;
149 /* restart to check persistence! */ 149 /* restart to check persistence! */
150 pid = GNUNET_OS_start_process ("gnunet-service-statistics", 150 pid = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-statistics",
151 "gnunet-service-statistics", 151 "gnunet-service-statistics",
152#if DEBUG_STATISTICS 152#if DEBUG_STATISTICS
153 "-L", "DEBUG", 153 "-L", "DEBUG",