[Goodies-commits] r1751 - xfce4-mailwatch-plugin/trunk/libmailwatch-core

Brian Tarricone kelnos at xfce.org
Tue Jul 11 03:24:11 CEST 2006


Author: kelnos
Date: 2006-07-11 01:24:11 +0000 (Tue, 11 Jul 2006)
New Revision: 1751

Modified:
   xfce4-mailwatch-plugin/trunk/libmailwatch-core/mailwatch-mailbox-gmail.c
Log:
fix gcc4 complaining about signedness (and a good test commit in the new repo)


Modified: xfce4-mailwatch-plugin/trunk/libmailwatch-core/mailwatch-mailbox-gmail.c
===================================================================
--- xfce4-mailwatch-plugin/trunk/libmailwatch-core/mailwatch-mailbox-gmail.c	2006-06-29 06:24:01 UTC (rev 1750)
+++ xfce4-mailwatch-plugin/trunk/libmailwatch-core/mailwatch-mailbox-gmail.c	2006-07-11 01:24:11 UTC (rev 1751)
@@ -321,7 +321,7 @@
     }
     
     g_snprintf(buf, BUFSIZE, "%s:%s", username, password);
-    if(xfce_mailwatch_base64_encode(buf, strlen(buf), &base64_creds) <= 0) {
+    if(xfce_mailwatch_base64_encode((guchar *)buf, strlen(buf), &base64_creds) <= 0) {
         DBG("failed to base64 enc credentials");
         goto cleanup;
     }




More information about the Goodies-commits mailing list