diff src/format_fuji.c @ 1000:4fe8f9656107

For the sake of consistency, use glib basic types everywhere.
author zas_
date Tue, 26 Aug 2008 22:22:51 +0000
parents 116346636d42
children 1646720364cf
line wrap: on
line diff
--- a/src/format_fuji.c	Tue Aug 26 21:19:33 2008 +0000
+++ b/src/format_fuji.c	Tue Aug 26 22:22:51 2008 +0000
@@ -39,7 +39,7 @@
  */
 
 
-gint format_fuji_raw(unsigned char *data, const guint len,
+gint format_fuji_raw(guchar *data, const guint len,
 		     guint *image_offset, guint *exif_offset)
 {
 	guint io;
@@ -175,10 +175,10 @@
 
 
 
-gint format_fuji_makernote(ExifData *exif, unsigned char *tiff, guint offset,
+gint format_fuji_makernote(ExifData *exif, guchar *tiff, guint offset,
 			   guint size, ExifByteOrder bo)
 {
-	unsigned char *data;
+	guchar *data;
 	guint ifdstart;
 
 	if (offset + 8 + 4 >= size) return FALSE;