From fd133e441066a5299e29e72f89185179cb099209 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 18 Jul 2012 06:47:03 +0000 Subject: [PATCH] fix format string type warning SVN revision: 74036 --- src/bin/e_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_utils.c b/src/bin/e_utils.c index 88c726f68..48e24409c 100644 --- a/src/bin/e_utils.c +++ b/src/bin/e_utils.c @@ -1743,7 +1743,7 @@ e_util_time_str_get(long int seconds) else { if (seconds <= 60) - snprintf(buf, sizeof(buf), _("%d Seconds"), seconds); + snprintf(buf, sizeof(buf), _("%li Seconds"), seconds); else if (seconds >= 31526000) { test = seconds / 31526000;