diff --git a/libcef/browser/native/browser_platform_delegate_native_linux.cc b/libcef/browser/native/browser_platform_delegate_native_linux.cc index 5f81b7284..c49f2c94e 100644 --- a/libcef/browser/native/browser_platform_delegate_native_linux.cc +++ b/libcef/browser/native/browser_platform_delegate_native_linux.cc @@ -232,7 +232,8 @@ void CefBrowserPlatformDelegateNativeLinux::ViewText(const std::string& text) { std::string openCommand("xdg-open "); openCommand += newName; - system(openCommand.c_str()); + int result = system(openCommand.c_str()); + ALLOW_UNUSED_LOCAL(result); } void CefBrowserPlatformDelegateNativeLinux::HandleKeyboardEvent(