comparison src/image-load.c @ 1016:9865e22d05f3

Fix two minor compilation warnings.
author zas_
date Sun, 31 Aug 2008 08:13:36 +0000
parents 2cdcf67e9300
children 2bd19478ba29
comparison
equal deleted inserted replaced
1015:2cdcf67e9300 1016:9865e22d05f3
55 NULL, /* class_finalize */ 55 NULL, /* class_finalize */
56 NULL, /* class_data */ 56 NULL, /* class_data */
57 sizeof (ImageLoader), 57 sizeof (ImageLoader),
58 0, /* n_preallocs */ 58 0, /* n_preallocs */
59 (GInstanceInitFunc)image_loader_init, /* instance_init */ 59 (GInstanceInitFunc)image_loader_init, /* instance_init */
60 NULL /* value_table */
60 }; 61 };
61 type = g_type_register_static (G_TYPE_OBJECT, "ImageLoaderType", &info, 0); 62 type = g_type_register_static (G_TYPE_OBJECT, "ImageLoaderType", &info, 0);
62 } 63 }
63 return type; 64 return type;
64 } 65 }