Skip to content

Commit

Permalink
[test] Remove fprintf argument after D144830
Browse files Browse the repository at this point in the history
Reviewed By: vitalybuka

Differential Revision: https://reviews.llvm.org/D145461
  • Loading branch information
Dave MacLachlan authored and vitalybuka committed Mar 8, 2023
1 parent 96a38b9 commit 71ab6ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler-rt/test/asan/TestCases/report_error_summary.cpp
Expand Up @@ -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);
}
Expand Down

0 comments on commit 71ab6ea

Please sign in to comment.