diff src/util.c @ 9722:25866d09063d

[gaim-migrate @ 10583] Nathan said it looked like I may have been using something without initializing it. It doesn't seem like it to me, but I thought I'd ask other people. This is my way of asking :-) committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 08 Aug 2004 16:56:34 +0000
parents 8158d148b3c2
children 242a5a97c952
line wrap: on
line diff
--- a/src/util.c	Sun Aug 08 16:52:58 2004 +0000
+++ b/src/util.c	Sun Aug 08 16:56:34 2004 +0000
@@ -504,8 +504,8 @@
 time_t
 gaim_str_to_time(const char *timestamp, gboolean utc)
 {
+	time_t retval = 0;
 	struct tm *t;
-	time_t retval = 0;
 	char buf[32];
 	char *c;
 	int tzoff = 0;