commit 8acaac4622c67ce88938a8eacf99feb9f593291b Author: Nick Mathewson nickm@torproject.org Date: Thu Oct 22 18:47:26 2015 -0400
Compilation was off by one character --- src/test/test_util_process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/test_util_process.c b/src/test/test_util_process.c index 876a625..cb1d5b2 100644 --- a/src/test/test_util_process.c +++ b/src/test/test_util_process.c @@ -70,7 +70,7 @@ test_util_process_clear_waitpid_callback(void *ignored) } #endif /* _WIN32 */
-#ifdef _WIN32 +#ifndef _WIN32 #define TEST(name) { #name, test_util_process_##name, 0, NULL, NULL } #else #define TEST(name) { #name, NULL, TT_SKIP, NULL, NULL }
tor-commits@lists.torproject.org