From: Lennart Poettering Date: Thu, 30 Apr 2020 11:19:14 +0000 (+0200) Subject: calendarspec: drop _pure_ from static function X-Git-Tag: v246-rc1~442^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c6f0300aec0d101a29806e84a501f3e0df1d7e1;p=thirdparty%2Fsystemd.git 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. --- diff --git a/src/shared/calendarspec.c b/src/shared/calendarspec.c index 7da3fb7211d..65afcd05819 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)