From f06829352b3592135ec71f8765148317b778ed92 Mon Sep 17 00:00:00 2001 From: Alvaro Lopez Ortega Date: Wed, 2 Jan 2008 16:22:25 +0000 Subject: [PATCH] These void functions were trying to return a value. It was causing the 2008-01-02 Alvaro Lopez Ortega * gio/gunixmount.c (g_unix_mount_unmount, g_unix_mount_eject): These void functions were trying to return a value. It was causing the compilation to fail. svn path=/trunk/; revision=6232 --- ChangeLog | 6 ++++++ gio/gunixmount.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8f161bac..52ad263d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-01-02 Alvaro Lopez Ortega + + * gio/gunixmount.c (g_unix_mount_unmount, g_unix_mount_eject): + These void functions were trying to return a value. It was causing + the compilation to fail. + 2008-01-02 Alvaro Lopez Ortega * glib/ghash.c (g_hash_table_replace, g_hash_table_insert): These diff --git a/gio/gunixmount.c b/gio/gunixmount.c index ca451fcf..11b6254a 100644 --- a/gio/gunixmount.c +++ b/gio/gunixmount.c @@ -353,7 +353,7 @@ g_unix_mount_unmount (GMount *mount, else argv[1] = unix_mount->device_path; - return eject_unmount_do (mount, cancellable, callback, user_data, argv); + eject_unmount_do (mount, cancellable, callback, user_data, argv); } static gboolean @@ -379,7 +379,7 @@ g_unix_mount_eject (GMount *mount, else argv[1] = unix_mount->device_path; - return eject_unmount_do (mount, cancellable, callback, user_data, argv); + eject_unmount_do (mount, cancellable, callback, user_data, argv); } static gboolean -- 2.34.1