From a86c28f4d595f46fa65b8d0b8916fe0501ef74a7 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Tue, 6 Jun 2017 07:37:57 +0200 Subject: [PATCH] iOS: Fix compile Change-Id: I0a7d7f7a40762dfc260eed65f51ee93ecb3d61f5 Reviewed-by: Orgad Shaneh --- src/plugins/ios/iostoolhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/ios/iostoolhandler.cpp b/src/plugins/ios/iostoolhandler.cpp index 2a6fea28b5c..cb04aef389f 100644 --- a/src/plugins/ios/iostoolhandler.cpp +++ b/src/plugins/ios/iostoolhandler.cpp @@ -893,7 +893,7 @@ bool IosSimulatorToolHandlerPrivate::isRunning() const { #ifdef Q_OS_UNIX return m_pid > 0 && (kill(m_pid, 0) == 0); -#elif +#else return false; #endif }