]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: Fix unused format parameter warning
authorJan Janssen <medhefgo@web.de>
Mon, 16 Oct 2023 14:47:41 +0000 (16:47 +0200)
committerMike Yuan <me@yhndnzj.com>
Tue, 17 Oct 2023 04:15:07 +0000 (12:15 +0800)
meson.build

index 5b6b928276261379d918c38bfef21bfd6c45ee90..f66eae2cb0ca669e09acd20cf20ba820445fe42f 100644 (file)
@@ -882,7 +882,7 @@ if not meson.is_cross_build()
 endif
 if nobody_user != nobody_group and not (nobody_user == 'nobody' and nobody_group == 'nogroup')
         warning('\n' +
-                'The configured user name "@0@" and group name "@0@" of the nobody user/group are not equivalent.\n'.format(nobody_user, nobody_group) +
+                'The configured user name "@0@" and group name "@1@" of the nobody user/group are not equivalent.\n'.format(nobody_user, nobody_group) +
                 'Please re-check that both "nobody-user" and "nobody-group" options are correctly set.')
 endif