[gaim-migrate @ 16782]

Wed, 16 Aug 2006 06:11:10 +0000

author
Mark Doliner <markdoliner@pidgin.im>
date
Wed, 16 Aug 2006 06:11:10 +0000
changeset 14202
b90f027d5ff1
parent 14201
d54dc208efe2
child 14203
f3a50c328ddc

[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

mercurial