Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
db0db1b2
Commit
db0db1b2
authored
Aug 23, 2015
by
Simon Morlat
Browse files
fix win32 build
parent
108b2c22
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gtk/main.c
gtk/main.c
+2
-2
No files found.
gtk/main.c
View file @
db0db1b2
...
...
@@ -1479,8 +1479,8 @@ void linphone_gtk_open_browser(const char *uri) {
}
#elif defined(WIN32)
HINSTANCE
instance
=
ShellExecute
(
NULL
,
"open"
,
uri
,
NULL
,
NULL
,
SW_SHOWNORMAL
);
if
(
instance
<=
32
)
{
g_warning
(
"Could not open %s (error #%i)"
,
uri
,
instance
);
if
(
(
int
)
instance
<=
32
)
{
g_warning
(
"Could not open %s (error #%i)"
,
uri
,
(
int
)
instance
);
}
#else
GError
*
error
=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment