Merge branch 'fix-gdir-warning-msvc' into 'master'

gdir: shutup a warning when building with msvc

See merge request GNOME/glib!612
This commit is contained in:
Philip Withnall 2019-01-24 10:44:34 +00:00
commit 72329ea303

View File

@ -189,6 +189,8 @@ g_dir_new_from_dirp (gpointer dirp)
return dir;
#else
g_assert_not_reached ();
return NULL;
#endif
}