diff options
author | Bart Polot <bart@net.in.tum.de> | 2012-05-08 17:10:10 +0000 |
---|---|---|
committer | Bart Polot <bart@net.in.tum.de> | 2012-05-08 17:10:10 +0000 |
commit | 16546613251edfcd595e4f584b1a2d2a414d0b1a (patch) | |
tree | 0a01bd8afdcb9501ee7f9be6d2ecc59648e40392 /src/statistics/test_statistics_api.c | |
parent | 9d268909fe579e36510ef03055c6cec9baa7d07a (diff) |
Renamed GNUNET_OS_process_close to GNUNET_OS_process_destroy
Diffstat (limited to 'src/statistics/test_statistics_api.c')
-rw-r--r-- | src/statistics/test_statistics_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/statistics/test_statistics_api.c b/src/statistics/test_statistics_api.c index 84d3f5a231..11f02b8179 100644 --- a/src/statistics/test_statistics_api.c +++ b/src/statistics/test_statistics_api.c @@ -153,7 +153,7 @@ check () ok = 1; } GNUNET_OS_process_wait (proc); - GNUNET_OS_process_close (proc); + GNUNET_OS_process_destroy (proc); proc = NULL; #endif if (ok != 0) @@ -175,7 +175,7 @@ check () ok = 1; } GNUNET_OS_process_wait (proc); - GNUNET_OS_process_close (proc); + GNUNET_OS_process_destroy (proc); proc = NULL; #endif return ok; |