diff src/util.c @ 4888:912294585edf

[gaim-migrate @ 5218] alphabet should be static. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 25 Mar 2003 02:30:08 +0000
parents fbfdacf7c611
children 89cb14edf8cf
line wrap: on
line diff
--- a/src/util.c	Tue Mar 25 02:12:52 2003 +0000
+++ b/src/util.c	Tue Mar 25 02:30:08 2003 +0000
@@ -346,7 +346,9 @@
 }
 
 
-const char alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" "0123456789+/";
+static const char alphabet[] =
+	"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
+	"0123456789+/";
 
 /* XXX Find bug */
 char *tobase64(const char *text)