From 1768ace0f76ea47f910fc81f9bec5a59c8cf9ec5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Wed, 14 Aug 2019 22:31:32 -0700 Subject: [PATCH] Cleanup. --- examples/common/entry/dialog.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/common/entry/dialog.cpp b/examples/common/entry/dialog.cpp index bdf2f3130..e9e15fc21 100644 --- a/examples/common/entry/dialog.cpp +++ b/examples/common/entry/dialog.cpp @@ -65,9 +65,11 @@ void openUrl(const bx::StringView& _url) #undef OPEN #if BX_PLATFORM_WINDOWS - ShellExecuteA(NULL, NULL, tmp, NULL, NULL, false); + void* result = ShellExecuteA(NULL, NULL, tmp, NULL, NULL, false); + BX_UNUSED(result); #else - system(tmp); + int32_t result = system(tmp); + BX_UNUSED(result); #endif // BX_PLATFORM_* }