chiark / gitweb /
journal-file: update format string to remove cast
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 9 Mar 2015 21:22:50 +0000 (17:22 -0400)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 10 Mar 2015 02:02:25 +0000 (22:02 -0400)
src/journal/journal-file.c

index 1e861d10a35ecd2dd86228efded5c2f075668de2..f857a6aa372508cb9fafb085f1aff47aa45ae4fd 100644 (file)
@@ -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;