comparison src/image-load.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 6ca2c5fd7b13
children 68b0cb6ca8f0
comparison
equal deleted inserted replaced
999:bbed8e9a5d33 1000:4fe8f9656107
235 return TRUE; 235 return TRUE;
236 } 236 }
237 237
238 static gint image_loader_begin(ImageLoader *il) 238 static gint image_loader_begin(ImageLoader *il)
239 { 239 {
240 int b; 240 gint b;
241 unsigned int offset = 0; 241 guint offset = 0;
242 242
243 if (!il->loader || il->pixbuf) return FALSE; 243 if (!il->loader || il->pixbuf) return FALSE;
244 244
245 b = read(il->load_fd, il->read_buffer, il->read_buffer_size); 245 b = read(il->load_fd, il->read_buffer, il->read_buffer_size);
246 246