From d404cd06b657cdcd97555362abec7966e339fd6d Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 25 Jan 2015 18:57:31 +0100 Subject: [PATCH] file: explicitely cast st_mtime to uint64_t when generating ETag Signed-off-by: Jo-Philipp Wich --- file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file.c b/file.c index 73e5a5f..c8833b6 100644 --- a/file.c +++ b/file.c @@ -289,7 +289,7 @@ static const char * uh_file_mime_lookup(const char *path) static const char * uh_file_mktag(struct stat *s, char *buf, int len) { snprintf(buf, len, "\"%" PRIx64 "-%" PRIx64 "-%" PRIx64 "\"", - s->st_ino, s->st_size, s->st_mtime); + s->st_ino, s->st_size, (uint64_t)s->st_mtime); return buf; } -- 2.25.1