changeset 5078:19814ecb23e0

[gaim-migrate @ 5431] Oof committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 08 Apr 2003 02:59:58 +0000
parents 617d1474467a
children 6e02fa68d5e1
files NEWS src/util.c
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/NEWS	Tue Apr 08 02:52:22 2003 +0000
+++ b/NEWS	Tue Apr 08 02:59:58 2003 +0000
@@ -30,6 +30,9 @@
 	will make for fewwer questions. Get used to using releases people, we want to
 	use cvs for actual development :-).
 
+	Mark: I didn't want to write any news without actually having done 
+	anything, so I fixed a meaningless compile warning.  Boo-yeah.
+
 	Sean: Luke can't spell "fewer".  How un-cool is that?
 
 0.60 (04/04/2003):
--- a/src/util.c	Tue Apr 08 02:52:22 2003 +0000
+++ b/src/util.c	Tue Apr 08 02:59:58 2003 +0000
@@ -492,7 +492,7 @@
  */
 int frombase16(const char *ascii, char **raw)
 {
-	int len, i, accumulator;
+	int len, i, accumulator=0;
 	char *data;
 
 	if (!ascii || !(len = strlen(ascii)) || (len % 2))