From: Karel Zak Date: Fri, 6 Mar 2015 10:27:16 +0000 (+0100) Subject: logger: fix whitespace and compiler warning [-Wunused-variable] X-Git-Tag: v2.27-rc1~396 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f1c825b75f2a8e8c1a1979f59c90f20d3631a54;p=thirdparty%2Futil-linux.git logger: fix whitespace and compiler warning [-Wunused-variable] misc-utils/logger.c: In function ‘syslog_rfc3164’: misc-utils/logger.c:336:9: warning: unused variable ‘now’ [-Wunused-variable] Signed-off-by: Karel Zak --- diff --git a/misc-utils/logger.c b/misc-utils/logger.c index 0d33b5b40f..ca50c824ed 100644 --- a/misc-utils/logger.c +++ b/misc-utils/logger.c @@ -326,14 +326,13 @@ rfc3164_current_time(void) tm = localtime(&tv.tv_sec); snprintf(time, sizeof(time),"%s %2d %2.2d:%2.2d:%2.2d", monthnames[tm->tm_mon], tm->tm_mday, - tm->tm_hour, tm->tm_min, tm->tm_sec); + tm->tm_hour, tm->tm_min, tm->tm_sec); return time; } static void syslog_rfc3164(const struct logger_ctl *ctl, const char *msg) { char *buf, pid[30], *cp, *hostname, *dot; - time_t now; int len; *pid = '\0';