From 696e648efe271a273f9f0dbad8de628c88ff255e Mon Sep 17 00:00:00 2001 From: Snaipe Date: Sat, 10 Sep 2016 13:03:27 +0200 Subject: [PATCH] i18n: Fixed remaining positional arguments in non-localized strings --- src/log/normal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/log/normal.c b/src/log/normal.c index 552c3c7..5741f6a 100644 --- a/src/log/normal.c +++ b/src/log/normal.c @@ -65,8 +65,8 @@ static msg_t msg_post_all = N_("%1$sSynthesis: Tested: %2$s%3$lu%4$s " #else static msg_t msg_pre_init = "%s::%s\n"; static msg_t msg_post_test_timed = "%s::%s: (%3.2fs)\n"; -static msg_t msg_post_test_skip = "%1$s::%2$s: Test was skipped\n"; -static msg_t msg_test_disabled = "%1$s::%2$s: Test is disabled\n"; +static msg_t msg_post_test_skip = "%s::%s: Test was skipped\n"; +static msg_t msg_test_disabled = "%s::%s: Test is disabled\n"; static msg_t msg_assert_fail = "%s%s%s:%s%d%s: Assertion failed: %s\n"; static msg_t msg_theory_fail = " Theory %s::%s failed with the following parameters: (%s)\n"; static msg_t msg_test_timeout = "%s::%s: Timed out. (%3.2fs)\n";