mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-08 18:36:17 +01:00
glib: fix compiler warning for g_unsetenv_utf8() on windows
"warning: 'void' function returning a value". Neither g_unsetenv_utf8() nor g_unsetenv() return anything.
This commit is contained in:
parent
b241e3a5cc
commit
59c5b939e2
@ -665,7 +665,7 @@ g_setenv_utf8 (const gchar *variable,
|
||||
void
|
||||
g_unsetenv_utf8 (const gchar *variable)
|
||||
{
|
||||
return g_unsetenv (variable);
|
||||
g_unsetenv (variable);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user