From 1821a4043bc44120557a449902f39a77ccb154a7 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 11 Mar 2017 03:48:06 +0100 Subject: [PATCH] Fix compilation error in a recent commit Add semicolon missing from 7a2df9534cc24120b3d95d462b2cd60c4b3b68b4. --- tests/test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test.cpp b/tests/test.cpp index e5919c9574..3f6e37cd50 100644 --- a/tests/test.cpp +++ b/tests/test.cpp @@ -524,7 +524,7 @@ extern bool IsAutomaticTest() // Also recognize Travis CI environment. if ( !s_isAutomatic ) - s_isAutomatic = wxGetEnv("TRAVIS", NULL) + s_isAutomatic = wxGetEnv("TRAVIS", NULL); } return s_isAutomatic == 1;