From 5617ebb096672b8284ffb02efe06e2577c6ba804 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 18 Feb 2026 14:13:47 +0100 Subject: [PATCH] report: we don't use inline in .c files, the compiler can figure this out better on its own --- src/report/report.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3