diff options
Diffstat (limited to 'src/journal')
-rw-r--r-- | src/journal/journal-file.c | 2 | ||||
-rw-r--r-- | src/journal/journal-file.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c index 901e71b6aa..bc72fca725 100644 --- a/src/journal/journal-file.c +++ b/src/journal/journal-file.c @@ -68,7 +68,7 @@ /* How many entries to keep in the entry array chain cache at max */ #define CHAIN_CACHE_MAX 20 -int journal_file_set_online(JournalFile *f) { +static int journal_file_set_online(JournalFile *f) { assert(f); if (!f->writable) diff --git a/src/journal/journal-file.h b/src/journal/journal-file.h index 5cc2c2d28d..773ece07e8 100644 --- a/src/journal/journal-file.h +++ b/src/journal/journal-file.h @@ -111,7 +111,6 @@ int journal_file_open( JournalFile **ret); int journal_file_set_offline(JournalFile *f); -int journal_file_set_online(JournalFile *f); void journal_file_close(JournalFile *j); int journal_file_open_reliably( |