From: Lennart Poettering Date: Fri, 22 Nov 2019 14:21:31 +0000 (+0100) Subject: journald: specifying _pure_ on static functions is unnecessary, compiler can figure... X-Git-Tag: v245-rc1~41^2~43 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2066f4fe30f512bc3bbcfc3543993c618599d24b;p=thirdparty%2Fsystemd.git journald: specifying _pure_ on static functions is unnecessary, compiler can figure that out on its own --- diff --git a/src/journal/journald-rate-limit.c b/src/journal/journald-rate-limit.c index af7196c6dee..fa21e7da29c 100644 --- a/src/journal/journald-rate-limit.c +++ b/src/journal/journald-rate-limit.c @@ -99,7 +99,7 @@ void journal_ratelimit_free(JournalRateLimit *r) { free(r); } -_pure_ static bool journal_ratelimit_group_expired(JournalRateLimitGroup *g, usec_t ts) { +static bool journal_ratelimit_group_expired(JournalRateLimitGroup *g, usec_t ts) { unsigned i; assert(g);