From 767e25e86703eabb815b283ca1475fb50536bdd3 Mon Sep 17 00:00:00 2001 From: CismonX Date: Wed, 5 Feb 2025 18:28:22 +0800 Subject: [PATCH] xstd: update xabort_() output format --- src/xstd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xstd.c b/src/xstd.c index acb37f4..ee2b7b0 100644 --- a/src/xstd.c +++ b/src/xstd.c @@ -43,7 +43,7 @@ xabort_ ( int line ) { #ifdef BOOKMARKFS_DEBUG - fprintf(stderr, "%s:%d: assertion failed: %s\n", name, line, assertion); + fprintf(stderr, "%s:%d: assertion (%s) failed\n", name, line, assertion); #else fprintf(stderr, "%s:%d: assertion failed\n", name, line); #endif