gthumb r2400 - in trunk: . libgthumb



Author: mjc
Date: Fri Aug 15 12:15:20 2008
New Revision: 2400
URL: http://svn.gnome.org/viewvc/gthumb?rev=2400&view=rev

Log:
2008-08-15  Michael J. Chudobiak  <mjc svn gnome org>

        * libgthumb/file-utils.c: (get_destination_free_space):
        Don't put the free space into a gboolean. That's only suitable for
        1-bit storage systems. guint64 is more capacious.



Modified:
   trunk/ChangeLog
   trunk/libgthumb/file-utils.c

Modified: trunk/libgthumb/file-utils.c
==============================================================================
--- trunk/libgthumb/file-utils.c	(original)
+++ trunk/libgthumb/file-utils.c	Fri Aug 15 12:15:20 2008
@@ -2595,8 +2595,8 @@
 guint64
 get_destination_free_space (const char *path)
 {
-	GFile    *file;
-	gboolean  result;
+	GFile   *file;
+	guint64  result;
 	
 	if (path == NULL)
 		return 0;



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