mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-06-02 02:40:07 +02: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
|
void
|
||||||
g_unsetenv_utf8 (const gchar *variable)
|
g_unsetenv_utf8 (const gchar *variable)
|
||||||
{
|
{
|
||||||
return g_unsetenv (variable);
|
g_unsetenv (variable);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user