From: Zbigniew Jędrzejewski-Szmek Date: Sat, 18 Feb 2017 21:23:03 +0000 (-0500) Subject: basic/env-util: drop _pure_ from static function X-Git-Tag: v233~59^2~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c8cebc36b02f6386faccce7d84b444155f3765ba;p=thirdparty%2Fsystemd.git basic/env-util: drop _pure_ from static function --- diff --git a/src/basic/env-util.c b/src/basic/env-util.c index 05b90e499e5..a28707fb490 100644 --- a/src/basic/env-util.c +++ b/src/basic/env-util.c @@ -248,7 +248,7 @@ fail: return NULL; } -_pure_ static bool env_match(const char *t, const char *pattern) { +static bool env_match(const char *t, const char *pattern) { assert(t); assert(pattern);