From dad77b3983acadc660e1269bbaed9303f6e2ea6f Mon Sep 17 00:00:00 2001 From: James Turner Date: Sat, 9 Jan 2016 09:45:43 -0600 Subject: [PATCH] Fix a Simgear compile failure. --- simgear/io/test_HTTP.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/io/test_HTTP.cxx b/simgear/io/test_HTTP.cxx index 54693599..0703fe8e 100644 --- a/simgear/io/test_HTTP.cxx +++ b/simgear/io/test_HTTP.cxx @@ -696,7 +696,7 @@ int main(int argc, char* argv[]) #if defined(ENABLE_CURL) const int SERVER_NO_DATA_CODE = CURLE_GOT_NOTHING; #else - const int SERVER_NO_DATA_CODESERVER_NO_DATA_CODE = 500; + const int SERVER_NO_DATA_CODE = 500; #endif COMPARE(tr->responseCode(), SERVER_NO_DATA_CODE); } -- 2.39.5