From f872ec33973b2f508d36939e917ffafd47a87b07 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 19 Jun 2010 00:14:12 +0200 Subject: [PATCH] util: properly divide in 64bit in format_timestamp() --- fixme | 2 -- src/util.c | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/fixme b/fixme index 29a3c11bc..838457670 100644 --- a/fixme +++ b/fixme @@ -55,8 +55,6 @@ * selinux -* User= and friends needs to understand %i and similar replacements - * make systemd bus activatable * systemd-sysvinit as package diff --git a/src/util.c b/src/util.c index 78d8d5d9c..766aa0296 100644 --- a/src/util.c +++ b/src/util.c @@ -1499,7 +1499,7 @@ char *format_timestamp(char *buf, size_t l, usec_t t) { if (t <= 0) return NULL; - sec = (time_t) t / USEC_PER_SEC; + sec = (time_t) (t / USEC_PER_SEC); if (strftime(buf, l, "%a, %d %b %Y %H:%M:%S %z", localtime_r(&sec, &tm)) <= 0) return NULL; -- 2.30.2