From 73496abb173b2fbf136ef492f3b481a61d361291 Mon Sep 17 00:00:00 2001 From: WideAwakeTN <30844488+WideAwakeTN@users.noreply.github.com> Date: Sat, 18 Feb 2023 11:08:45 +0100 Subject: [PATCH] Fix linter complaints --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 757a416..24a8e6c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,8 +41,8 @@ endif() option(USE_PI_MUTEX "Enables priority inheritance mutexes." ON) if(USE_PI_MUTEX) if(CMAKE_SYSTEM_NAME STREQUAL Linux OR - CMAKE_SYSTEM_NAME STREQUAL VxWorks OR - CMAKE_SYSTEM_NAME STREQUAL QNX) + CMAKE_SYSTEM_NAME STREQUAL VxWorks OR + CMAKE_SYSTEM_NAME STREQUAL QNX) target_compile_definitions(${PROJECT_NAME} PUBLIC "RCPPUTILS_USE_PIMUTEX") else() message("Mutexes with priority inheritance are not supported on your system. Using std mutexes.")