From 9125e38907c23bdea32852c2e08a0ddeed41291b Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 1 Jun 2020 17:12:07 -0700 Subject: [PATCH] Use the right version of this test file. --- tests/general/sigabrt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/general/sigabrt.c b/tests/general/sigabrt.c index dbee29f..22569be 100644 --- a/tests/general/sigabrt.c +++ b/tests/general/sigabrt.c @@ -3,8 +3,8 @@ #include int main(void) { - fprintf("raising SIGABRT...\n"); + fprintf(stderr, "raising SIGABRT...\n"); raise(SIGABRT); - fprintf("oops!\n"); + fprintf(stderr, "oops!\n"); return EXIT_FAILURE; }