diff src/image-load.h @ 1185:82fdf177a7c1

Fix up pointer signedness warnings.
author zas_
date Thu, 27 Nov 2008 12:31:27 +0000
parents 1646720364cf
children 8b89e3ff286b
line wrap: on
line diff
--- a/src/image-load.h	Thu Nov 27 12:30:49 2008 +0000
+++ b/src/image-load.h	Thu Nov 27 12:31:27 2008 +0000
@@ -28,8 +28,8 @@
 	FileData *fd;
 	gchar *path;
 
-	gint bytes_read;
-	gint bytes_total;
+	gsize bytes_read;
+	gsize bytes_total;
 
 	gint preview;
 
@@ -56,7 +56,7 @@
 	gboolean thread;
 
 	guchar *mapped_file;
-	gint read_buffer_size;
+	gsize read_buffer_size;
 	gint idle_read_loop_count;
 };