mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-21 08:28:53 +02:00
These void functions were trying to return a value. It was causing the
2008-01-02 Alvaro Lopez Ortega <alvaro@sun.com> * 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
This commit is contained in:
committed by
Alvaro Lopez Ortega
parent
3ff8319795
commit
f06829352b
@@ -1,3 +1,9 @@
|
|||||||
|
2008-01-02 Alvaro Lopez Ortega <alvaro@sun.com>
|
||||||
|
|
||||||
|
* 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 <alvaro@sun.com>
|
2008-01-02 Alvaro Lopez Ortega <alvaro@sun.com>
|
||||||
|
|
||||||
* glib/ghash.c (g_hash_table_replace, g_hash_table_insert): These
|
* glib/ghash.c (g_hash_table_replace, g_hash_table_insert): These
|
||||||
|
@@ -353,7 +353,7 @@ g_unix_mount_unmount (GMount *mount,
|
|||||||
else
|
else
|
||||||
argv[1] = unix_mount->device_path;
|
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
|
static gboolean
|
||||||
@@ -379,7 +379,7 @@ g_unix_mount_eject (GMount *mount,
|
|||||||
else
|
else
|
||||||
argv[1] = unix_mount->device_path;
|
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
|
static gboolean
|
||||||
|
Reference in New Issue
Block a user