From 2066f4fe30f512bc3bbcfc3543993c618599d24b Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 22 Nov 2019 15:21:31 +0100 Subject: [PATCH] journald: specifying _pure_ on static functions is unnecessary, compiler can figure that out on its own --- src/journal/journald-rate-limit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3