From: <the...@us...> - 2006-08-16 06:11:14
|
Revision: 16782 Author: thekingant Date: 2006-08-15 23:11:10 -0700 (Tue, 15 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16782&view=rev Log Message: ----------- Fix a warning: nexus.c:299: warning: no previous prototype for 'nexus_challenge_data_lookup' And change this code to use tab indentation Modified Paths: -------------- trunk/src/protocols/msn/nexus.c Modified: trunk/src/protocols/msn/nexus.c =================================================================== --- trunk/src/protocols/msn/nexus.c 2006-08-16 05:12:48 UTC (rev 16781) +++ trunk/src/protocols/msn/nexus.c 2006-08-16 06:11:10 UTC (rev 16782) @@ -294,13 +294,13 @@ } /* this guards against missing hash entries */ -char * +static char * nexus_challenge_data_lookup(GHashTable *challenge_data, const char *key) { - char *entry; + char *entry; - return (entry = (char *)g_hash_table_lookup(challenge_data, key)) ? - entry : "(null)"; + return (entry = (char *)g_hash_table_lookup(challenge_data, key)) ? + entry : "(null)"; } void This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |