Wed, 16 Aug 2006 06:11:10 +0000
[gaim-migrate @ 16782]
Fix a warning:
nexus.c:299: warning: no previous prototype for 'nexus_challenge_data_lookup'
And change this code to use tab indentation
| src/protocols/msn/nexus.c | file | annotate | diff | comparison | revisions |
--- a/src/protocols/msn/nexus.c Wed Aug 16 05:12:48 2006 +0000 +++ b/src/protocols/msn/nexus.c Wed Aug 16 06:11:10 2006 +0000 @@ -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