im.pidgin.pidgin: 387d2588775830c33fb0a718273c14e2f3455d12

nosnilmot at pidgin.im nosnilmot at pidgin.im
Fri Jan 25 09:01:12 EST 2008


-----------------------------------------------------------------
Revision: 387d2588775830c33fb0a718273c14e2f3455d12
Ancestor: 95812d96788a2a9305cb124ae90afb76b4b22891
Author: nosnilmot at pidgin.im
Date: 2008-01-25T13:46:55
Branch: im.pidgin.pidgin

Modified files:
        libpurple/protocols/yahoo/yahoo_filexfer.c

ChangeLog: 

Kill this warning when using -Wstrict-prototypes:
yahoo_filexfer.c:926: warning: function declaration isn't a prototype

-------------- next part --------------
============================================================
--- libpurple/protocols/yahoo/yahoo_filexfer.c	50c46b506c1f2e1bed44b7cb8ae919815b9fa196
+++ libpurple/protocols/yahoo/yahoo_filexfer.c	a6555cf3c92d8e810ac2f94865a68ddc8bfeb966
@@ -922,7 +922,7 @@ PurpleXfer *yahoo_new_xfer(PurpleConnect
 	return xfer;
 }
 
-static gchar* yahoo_xfer_new_xfer_id()
+static gchar* yahoo_xfer_new_xfer_id(void)
 {
 	gchar *ans;
 	int i,j;
@@ -937,7 +937,7 @@ static gchar* yahoo_xfer_new_xfer_id()
 		else if(j < 52)
 			ans[i] = j - 26 + 'A';
 		else
-			ans[i] = j - 52 + '0';     
+			ans[i] = j - 52 + '0';
 	}
 	return ans;
 }


More information about the Commits mailing list