Mercurial > geeqie.yaz
changeset 1185:82fdf177a7c1
Fix up pointer signedness warnings.
author | zas_ |
---|---|
date | Thu, 27 Nov 2008 12:31:27 +0000 |
parents | 9dd3522a0e23 |
children | fd7d587199a7 |
files | src/image-load.h |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
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; };