From b7d6b3ccde2dab6275a89428317beae022f17c2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Thu, 18 Jun 2026 15:00:35 +0200 Subject: [PATCH] meson: silence warning about unused parameters It seems some gcc versions enable it by default, so we get a lot of warnings. --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 1d8a921..0181375 100644 --- a/meson.build +++ b/meson.build @@ -21,6 +21,7 @@ add_project_arguments( '-D_GNU_SOURCE=1', '-DPACKAGE_VERSION="@0@"'.format(meson.project_version()), '-DLIBSYSTEMD_VERSION=@0@'.format(libsystemd_dep.version()), + '-Wno-unused-parameter', language : 'c', )