journald: specifying _pure_ on static functions is unnecessary, compiler can figure that out on its own

This commit is contained in:
Lennart Poettering 2019-11-22 15:21:31 +01:00
parent a2735a4549
commit 2066f4fe30

View file

@ -99,7 +99,7 @@ void journal_ratelimit_free(JournalRateLimit *r) {
free(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; unsigned i;
assert(g); assert(g);