summaryrefslogtreecommitdiff
path: root/tests/usr.bin/xlint/lint1/msg_334.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/usr.bin/xlint/lint1/msg_334.c')
-rw-r--r--tests/usr.bin/xlint/lint1/msg_334.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/usr.bin/xlint/lint1/msg_334.c b/tests/usr.bin/xlint/lint1/msg_334.c
index d77551b61c3..96f8d569c3a 100644
--- a/tests/usr.bin/xlint/lint1/msg_334.c
+++ b/tests/usr.bin/xlint/lint1/msg_334.c
@@ -1,7 +1,7 @@
-/* $NetBSD: msg_334.c,v 1.3 2023/03/28 14:44:35 rillig Exp $ */
+/* $NetBSD: msg_334.c,v 1.4 2023/07/09 10:42:07 rillig Exp $ */
# 3 "msg_334.c"
-// Test for message: argument #%d expects '%s', gets passed '%s' [334]
+// Test for message: argument %d expects '%s', gets passed '%s' [334]
//
// See d_c99_bool_strict.c for many more examples.
@@ -19,10 +19,10 @@ caller(bool b, int i)
{
test_bool(b);
- /* expect+1: error: argument #1 expects '_Bool', gets passed 'int' [334] */
+ /* expect+1: error: argument 1 expects '_Bool', gets passed 'int' [334] */
test_bool(i);
- /* expect+1: error: argument #1 expects 'int', gets passed '_Bool' [334] */
+ /* expect+1: error: argument 1 expects 'int', gets passed '_Bool' [334] */
test_int(b);
test_int(i);