1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-11 05:17:44 +03:00

journal: fix indentation in managed_journal_file_open_reliably

This commit is contained in:
msizanoen1 2022-10-11 18:16:41 +07:00
parent 383d9155a2
commit 5bc787fa53

View 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);
}