Thu May 26 22:14:53 2005 John Ellis <johne@verizon.net>
authorJohn Ellis <johne@verizon.net>
Fri, 27 May 2005 02:17:18 +0000 (02:17 +0000)
committerJohn Ellis <johne@verizon.net>
Fri, 27 May 2005 02:17:18 +0000 (02:17 +0000)
        * format_raw.c (format_raw_parse): Use unsigned int to match arguments.

ChangeLog
src/format_raw.c

index 0e4d3d0..3cd5f15 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu May 26 22:14:53 2005  John Ellis  <johne@verizon.net>
+
+       * format_raw.c (format_raw_parse): Use unsigned int to match arguments.
+
 Thu May 26 13:57:19 2005  John Ellis  <johne@verizon.net>
 
        * format_raw.[ch]: Move camera specific code to manufacturer specific
index a63e8bd..4b03545 100644 (file)
@@ -70,8 +70,8 @@ static gint format_raw_parse(FormatEntry *entry,
                             const void *data, const guint len,
                             guint *image_offset, guint *exif_offset)
 {
-       gint io = 0;
-       gint eo = 0;
+       guint io = 0;
+       guint eo = 0;
        gint found;
 
        if (!entry || !entry->func_parse) return FALSE;