]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/unittests/format_pieces-selftests.c
format_pieces-selftests.c: Silence ARI warnings
[thirdparty/binutils-gdb.git] / gdb / unittests / format_pieces-selftests.c
index 6d11a9cf1d693267772e457db1d94522f6ef6b9a..8f63247931998d7f04f8def958bf0ff18a2d5f3c 100644 (file)
@@ -48,12 +48,12 @@ test_escape_sequences ()
 static void
 test_format_specifier ()
 {
-  check ("Hello %d%llx%%d",
+  check ("Hello %d%llx%%d", /* ARI: %ll */
     {
       format_piece ("Hello ", literal_piece),
       format_piece ("%d", int_arg),
       format_piece ("", literal_piece),
-      format_piece ("%llx", long_long_arg),
+      format_piece ("%llx", long_long_arg), /* ARI: %ll */
       format_piece ("%%d", literal_piece),
     });
 }