changeset 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 7433f6a3569e
children f7150929332b
files src/util.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
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)