1 --- control-center-2.15.90/capplets/about-me/gnome-about-me.c.orig 2006-07-28 15:54:16.157880000 +0100 2 +++ control-center-2.15.90/capplets/about-me/gnome-about-me.c 2006-07-28 16:04:54.172476000 +0100 3 @@ -435,7 +435,7 @@ 4 gchar *file; 5 FILE *fp; 6 7 - gchar *data; 8 + guchar *data; 9 gsize length; 10 11 dialog = me->dialog; 12 @@ -449,12 +449,12 @@ 13 float scale; 14 15 widget = WID ("image-chooser"); 16 - e_image_chooser_get_image_data (E_IMAGE_CHOOSER (widget), &data, &length); 17 + e_image_chooser_get_image_data (E_IMAGE_CHOOSER (widget), (char **)&data, &length); 18 19 /* Before updating the image in EDS scale it to a reasonable size 20 so that the user doesn't get an application that does not respond 21 or that takes 100% CPU */ 22 - gdk_pixbuf_loader_write (loader, (guchar *)data, length, NULL); 23 + gdk_pixbuf_loader_write (loader, data, length, NULL); 24 25 pixbuf = gdk_pixbuf_loader_get_pixbuf (loader); 26 27