]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
journal: fix indentation in managed_journal_file_open_reliably 24938/head
authormsizanoen1 <msizanoen@qtmlabs.xyz>
Tue, 11 Oct 2022 11:16:41 +0000 (18:16 +0700)
committermsizanoen1 <msizanoen@qtmlabs.xyz>
Sun, 16 Oct 2022 14:07:33 +0000 (21:07 +0700)
src/journal/managed-journal-file.c

index 6164361d751666b660b8a6c2ab53e580772e7726..810167772ad924ec629788947bc0d620613b0d6b 100644 (file)
@@ -514,7 +514,7 @@ int managed_journal_file_open_reliably(
         int r;
 
         r = managed_journal_file_open(-1, fname, open_flags, file_flags, mode, compress_threshold_bytes, metrics,
-                               mmap_cache, deferred_closes, template, ret);
+                                      mmap_cache, deferred_closes, template, ret);
         if (!IN_SET(r,
                     -EBADMSG,           /* Corrupted */
                     -ENODATA,           /* Truncated */
@@ -557,5 +557,5 @@ int managed_journal_file_open_reliably(
                 return r;
 
         return managed_journal_file_open(-1, fname, open_flags, file_flags, mode, compress_threshold_bytes, metrics,
-                                  mmap_cache, deferred_closes, template, ret);
+                                         mmap_cache, deferred_closes, template, ret);
 }