diff options
author | Vito Caputo <vcaputo@gnugeneration.com> | 2016-02-06 03:51:14 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@gnugeneration.com> | 2016-02-06 03:51:14 -0800 |
commit | 31981791c543c54aca12973e955924d525e8f1eb (patch) | |
tree | b53e83d21dc747923aa3ddca31712390fda63059 /src | |
parent | 089ed40bf4b1df0408c9123f7dfcaa23768668f5 (diff) |
journal: add missing space to switch statement
Diffstat (limited to 'src')
-rw-r--r-- | src/journal/journal-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c index 9a52a4f959..3d87e25724 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; |