camel-mime-parser.c's turn

Philip Van Hoof <[email protected]> Tue, 17 Oct 2006 10:45:32 +0200
Newsgroups gmane.comp.gnome.evolution.patches
Message-ID <[email protected]>
Same ..

-- 
Philip Van Hoof, software developer
home: me at pvanhoof dot be
gnome: pvanhoof at gnome dot org
work: vanhoof at x-tend dot be
blog: http://pvanhoof.be/blog

_______________________________________________
Evolution-patches mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/evolution-patches
camel-mime-parser.c.diff (text/x-patch, 556 B)
371c371
< 		g_byte_array_append(array, "", 1);
---
> 		g_byte_array_append(array, (guchar*)"", 1);
1044c1044
< 			g_byte_array_append(save, s->inptr, inptr-s->inptr);
---
> 			g_byte_array_append(save, (guchar*)s->inptr, inptr-s->inptr);
1717c1717
< 						g_byte_array_append(h->posttext, *databuffer, *datalength);
---
> 						g_byte_array_append(h->posttext, (guchar*) *databuffer, *datalength);
1721c1721
< 						g_byte_array_append(h->pretext, *databuffer, *datalength);
---
> 						g_byte_array_append(h->pretext, (guchar*) *databuffer, *datalength);