From: Lennart Poettering Date: Tue, 10 Feb 2015 11:32:54 +0000 (+0100) Subject: journald: don't specify inline in local functions X-Git-Tag: v219~100 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=2a560338c471f47ca0caf6f1ec8c54a61e005d7f;hp=5b99bc57f27c0beb37e3d56edbaf70eb1a276531 journald: don't specify inline in local functions Leave it to the compiler to figure out whether it shall inline stuff or not. Only place where using static inline is OK to use is in in header files, really. --- diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c index ec12e891a..2845e05ce 100644 --- a/src/journal/journal-file.c +++ b/src/journal/journal-file.c @@ -1963,11 +1963,12 @@ static int test_object_monotonic(JournalFile *f, uint64_t p, uint64_t needle) { return TEST_RIGHT; } -static inline int find_data_object_by_boot_id( +static int find_data_object_by_boot_id( JournalFile *f, sd_id128_t boot_id, Object **o, uint64_t *b) { + char t[sizeof("_BOOT_ID=")-1 + 32 + 1] = "_BOOT_ID="; sd_id128_to_string(boot_id, t + 9);