win32: Fix gdbusdaemon.c build

was using rmdir, not g_rmdir
This commit is contained in:
Alexander Larsson
2012-04-17 15:51:55 +02:00
parent 62c300ecd4
commit 57bdc0a16e

View File

@@ -1498,7 +1498,7 @@ g_dbus_daemon_finalize (GObject *object)
if (daemon->tmpdir)
{
rmdir (daemon->tmpdir);
g_rmdir (daemon->tmpdir);
g_free (daemon->tmpdir);
}