From 31981791c543c54aca12973e955924d525e8f1eb Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sat, 6 Feb 2016 03:51:14 -0800 Subject: [PATCH] journal: add missing space to switch statement --- src/journal/journal-file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c index 9a52a4f9594..3d87e25724b 100644 --- a/src/journal/journal-file.c +++ b/src/journal/journal-file.c @@ -100,7 +100,7 @@ static int journal_file_set_online(JournalFile *f) { if (mmap_cache_got_sigbus(f->mmap, f->fd)) return -EIO; - switch(f->header->state) { + switch (f->header->state) { case STATE_ONLINE: return 0; -- 2.39.2