summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fixme2
-rw-r--r--src/util.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/fixme b/fixme
index 29a3c11bcf..8384576707 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 78d8d5d9c5..766aa02965 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;