From 3980243c2217b1dca80c3925a63f58258f09668b Mon Sep 17 00:00:00 2001 From: laforge Date: Fri, 16 Jul 2004 13:51:42 +0000 Subject: In C, we declare variables at the top of function (Olivier Clerget) --- extensions/libipt_time.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/libipt_time.c b/extensions/libipt_time.c index 8b6077a..7d722fb 100644 --- a/extensions/libipt_time.c +++ b/extensions/libipt_time.c @@ -452,10 +452,11 @@ divide_time(int fulltime, int *hours, int *minutes) static void print_date(time_t date, char *command) { + struct tm *t; + /* If it's default value, don't print..*/ if (((date == 0) || (date == LONG_MAX)) && (command != NULL)) return; - struct tm *t; t = localtime(&date); if (command != NULL) printf("%s %d:%d:%d:%d:%d:%d ", command, (t->tm_year + 1900), (t->tm_mon + 1), -- cgit v1.2.3