From: Vito Caputo Date: Sat, 6 Feb 2016 11:51:14 +0000 (-0800) Subject: journal: add missing space to switch statement X-Git-Tag: v229~32^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=31981791c543c54aca12973e955924d525e8f1eb;p=thirdparty%2Fsystemd.git journal: add missing space to switch statement --- 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;