From: Zbigniew Jędrzejewski-Szmek Date: Thu, 15 Sep 2016 12:21:42 +0000 (-0400) Subject: test-execute: fix %n typo (#4153) X-Git-Tag: v232~211 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2179fd109d08c1d0dfcbc83bade2c9cda3d9f13c;p=thirdparty%2Fsystemd.git test-execute: fix %n typo (#4153) --- diff --git a/src/test/test-execute.c b/src/test/test-execute.c index 1db7f780419..25489cefbc0 100644 --- a/src/test/test-execute.c +++ b/src/test/test-execute.c @@ -324,7 +324,7 @@ static int run_tests(UnitFileScope scope, test_function_t *tests) { r = manager_new(scope, true, &m); if (MANAGER_SKIP_TEST(r)) { - log_notice_errno(r, "Skipping test: manager_new: %n"); + log_notice_errno(r, "Skipping test: manager_new: %m"); return EXIT_TEST_SKIP; } assert_se(r >= 0);