From: Nick Mathewson Date: Thu, 22 Oct 2015 22:47:26 +0000 (-0400) Subject: Compilation was off by one character X-Git-Tag: tor-0.2.8.1-alpha~265 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8acaac4622c67ce88938a8eacf99feb9f593291b;p=thirdparty%2Ftor.git Compilation was off by one character --- diff --git a/src/test/test_util_process.c b/src/test/test_util_process.c index 876a625fe8..cb1d5b2ebb 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 }