From 53ec6b1789d2f6a49656a5fc4121ac4b6437fdf2 Mon Sep 17 00:00:00 2001 From: Andy Green Date: Wed, 5 Oct 2016 10:15:16 +0800 Subject: [PATCH] fix cosmetic if end if name tag error --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d3c76b8..84b2f7d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -678,9 +678,9 @@ if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX OR (CMAKE_C_COMPILER_ID endif() if (UNIX OR LWS_WITH_ESP8266) set(CMAKE_C_FLAGS "-Wall -Werror ${VISIBILITY_FLAG} ${CMAKE_C_FLAGS}" ) - else(UNIX) + else() set(CMAKE_C_FLAGS "-Wall ${VISIBILITY_FLAG} ${CMAKE_C_FLAGS}" ) - endif(UNIX) + endif() endif () if ((CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX) AND NOT LWS_WITHOUT_TESTAPPS) -- 2.7.4