Re: Compilation warning fixes
Philip Van Hoof <[email protected]> Tue, 17 Oct 2006 09:54:28 +0200
| Newsgroups | gmane.comp.gnome.evolution.patches |
|---|---|
| Message-ID | <[email protected]> |
On Tue, 2006-10-17 at 09:51 +0200, Philip Van Hoof wrote: > I'm trying to get work upstream with this patch. > > Fixed some compilation warnings in libedataserver > > Go ahead and commit it for me if you like the patch. I added a diff for > the ChangeLog too. This is not an update. It's another compilation warning in libedataserver. Same story, trying to get work upstream. -- 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
md5-utils.c.diff
(text/x-patch, 364 B)
--- md5-utils.c 2006-10-17 09:52:15.000000000 +0200 +++ /home/pvanhoof/repos/gnome/cvs/evolution-data-server/libedataserver/md5-utils.c 2005-11-25 02:35:08.000000000 +0100 @@ -315,7 +315,7 @@ MD5Context ctx; md5_init (&ctx); - md5_update (&ctx, (const guchar*)buffer, buffer_size); + md5_update (&ctx, buffer, buffer_size); md5_final (&ctx, digest); }