[glib/gdbus-daemon] win32: Fix gdbusdaemon.c build



commit 57bdc0a16e016de47ec93798eb2bc9241c7e776d
Author: Alexander Larsson <alexl redhat com>
Date:   Tue Apr 17 15:51:55 2012 +0200

    win32: Fix gdbusdaemon.c build
    
    was using rmdir, not g_rmdir

 gio/gdbusdaemon.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gio/gdbusdaemon.c b/gio/gdbusdaemon.c
index 73b8547..1345d01 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);
     }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]