From 3c6f0300aec0d101a29806e84a501f3e0df1d7e1 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 30 Apr 2020 13:19:14 +0200 Subject: [PATCH] calendarspec: drop _pure_ from static function For static functions the compiler should be able to determine this on its own, let's not add needless decorators. --- src/shared/calendarspec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/calendarspec.c b/src/shared/calendarspec.c index 7da3fb7211..65afcd0581 100644 --- a/src/shared/calendarspec.c +++ b/src/shared/calendarspec.c @@ -165,7 +165,7 @@ int calendar_spec_normalize(CalendarSpec *c) { return 0; } -_pure_ static bool chain_valid(CalendarComponent *c, int from, int to, bool end_of_month) { +static bool chain_valid(CalendarComponent *c, int from, int to, bool end_of_month) { assert(to >= from); if (!c) -- 2.25.1