[test] Remove fprintf argument after D144830
authorDave MacLachlan <dmaclach@google.com>
Wed, 8 Mar 2023 05:38:04 +0000 (21:38 -0800)
committerVitaly Buka <vitalybuka@google.com>
Wed, 8 Mar 2023 05:40:47 +0000 (21:40 -0800)
Reviewed By: vitalybuka

Differential Revision: https://reviews.llvm.org/D145461

compiler-rt/test/asan/TestCases/report_error_summary.cpp

index c462b6b..6591cf1 100644 (file)
@@ -6,7 +6,7 @@
 #include <stdio.h>
 
 extern "C" void __sanitizer_report_error_summary(const char *summary) {
-  fprintf(stderr, "test_report_error_summary\n", summary);
+  fprintf(stderr, "test_report_error_summary\n");
   // CHECK: test_report_error_summary
   fflush(stderr);
 }