From: Lennart Poettering Date: Wed, 18 Feb 2026 13:13:47 +0000 (+0100) Subject: report: we don't use inline in .c files, the compiler can figure this out better... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5617ebb096672b8284ffb02efe06e2577c6ba804;p=thirdparty%2Fsystemd.git report: we don't use inline in .c files, the compiler can figure this out better on its own --- diff --git a/src/report/report.c b/src/report/report.c index bf216dd2e39..12a815814cb 100644 --- a/src/report/report.c +++ b/src/report/report.c @@ -112,7 +112,7 @@ static int metric_compare(sd_json_variant *const *a, sd_json_variant *const *b) return strcmp_ptr(fields_str_a, fields_str_b); } -static inline bool metric_startswith_prefix(const char *metric_name, const char *prefix) { +static bool metric_startswith_prefix(const char *metric_name, const char *prefix) { if (isempty(metric_name) || isempty(prefix)) return false;