summaryrefslogtreecommitdiff
path: root/src/journal
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-03-09 17:22:50 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-03-09 22:02:25 -0400
commitd587eca5104b212793b310d8590db480f1004d3a (patch)
tree4758356daa483db10aaf49257068a113486bd869 /src/journal
parent288359dba1417703c7eaf008f153339c6c321412 (diff)
journal-file: update format string to remove cast
Diffstat (limited to 'src/journal')
-rw-r--r--src/journal/journal-file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c
index 1e861d10a..f857a6aa3 100644
--- a/src/journal/journal-file.c
+++ b/src/journal/journal-file.c
@@ -2818,9 +2818,9 @@ int journal_file_open_reliably(
/* The file is corrupted. Rotate it away and try it again (but only once) */
l = strlen(fname);
- if (asprintf(&p, "%.*s@%016llx-%016" PRIx64 ".journal~",
+ if (asprintf(&p, "%.*s@%016"PRIx64 "-%016"PRIx64 ".journal~",
(int) l - 8, fname,
- (unsigned long long) now(CLOCK_REALTIME),
+ now(CLOCK_REALTIME),
random_u64()) < 0)
return -ENOMEM;