fix format string type warning

SVN revision: 74036
This commit is contained in:
Mike Blumenkrantz 2012-07-18 06:47:03 +00:00
parent 1c2cc73e7d
commit fd133e4410
1 changed files with 1 additions and 1 deletions

View File

@ -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;