From 57bdc0a16e016de47ec93798eb2bc9241c7e776d Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Tue, 17 Apr 2012 15:51:55 +0200 Subject: [PATCH] win32: Fix gdbusdaemon.c build was using rmdir, not g_rmdir --- gio/gdbusdaemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/gdbusdaemon.c b/gio/gdbusdaemon.c index 73b854722..1345d01e4 100644 --- a/gio/gdbusdaemon.c +++ b/gio/gdbusdaemon.c @@ -1498,7 +1498,7 @@ g_dbus_daemon_finalize (GObject *object) if (daemon->tmpdir) { - rmdir (daemon->tmpdir); + g_rmdir (daemon->tmpdir); g_free (daemon->tmpdir); }