diff --git a/examples/common/entry/dialog.cpp b/examples/common/entry/dialog.cpp index a3250be8f..a651df7f0 100644 --- a/examples/common/entry/dialog.cpp +++ b/examples/common/entry/dialog.cpp @@ -67,7 +67,7 @@ void openUrl(const bx::StringView& _url) #if BX_PLATFORM_WINDOWS void* result = ShellExecuteA(NULL, NULL, tmp, NULL, NULL, false); BX_UNUSED(result); -#elif !defined(BX_PLATFORM_IOS) +#elif !BX_PLATFORM_IOS int32_t result = system(tmp); BX_UNUSED(result); #endif // BX_PLATFORM_*