Fix compiler type warnings (snprintf)

Reviewers: zmike!

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D4715
This commit is contained in:
Al Poole 2017-03-13 12:32:54 -04:00 committed by Mike Blumenkrantz
parent 9eb847977b
commit 6501c42fd3
1 changed files with 2 additions and 2 deletions

View File

@ -576,10 +576,10 @@ e_util_size_string_get(off_t size)
E_API char *
e_util_file_time_get(time_t ftime)
{
time_t diff, ltime, test;
time_t diff, ltime;
char buf[256];
char *s = NULL;
long test;
ltime = time(NULL);
diff = ltime - ftime;
buf[0] = 0;