fix win32 build

This commit is contained in:
Simon Morlat 2015-08-23 19:24:38 +02:00
parent 108b2c2255
commit db0db1b297

View file

@ -1479,8 +1479,8 @@ void linphone_gtk_open_browser(const char *uri) {
} }
#elif defined(WIN32) #elif defined(WIN32)
HINSTANCE instance = ShellExecute(NULL, "open", uri, NULL, NULL, SW_SHOWNORMAL); HINSTANCE instance = ShellExecute(NULL, "open", uri, NULL, NULL, SW_SHOWNORMAL);
if (instance <= 32) { if ((int)instance <= 32) {
g_warning("Could not open %s (error #%i)", uri, instance); g_warning("Could not open %s (error #%i)", uri, (int)instance);
} }
#else #else
GError *error = NULL; GError *error = NULL;