summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-11-22 15:21:31 +0100
committerLennart Poettering <lennart@poettering.net>2020-01-31 15:00:37 +0100
commit2066f4fe30f512bc3bbcfc3543993c618599d24b (patch)
tree67d812fbdbba75edbdab43fdc0bc9c35551e09fe
parentjournald: don't bother with seqnum file if we don't read form /dev/kmsg anyway (diff)
downloadsystemd-2066f4fe30f512bc3bbcfc3543993c618599d24b.tar.xz
systemd-2066f4fe30f512bc3bbcfc3543993c618599d24b.zip
journald: specifying _pure_ on static functions is unnecessary, compiler can figure that out on its own
-rw-r--r--src/journal/journald-rate-limit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journald-rate-limit.c b/src/journal/journald-rate-limit.c
index af7196c6de..fa21e7da29 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);