xstd: update xabort_() output format

This commit is contained in:
CismonX 2025-02-05 18:28:22 +08:00
parent d99ef6d681
commit 767e25e867
No known key found for this signature in database
GPG key ID: 3094873E29A482FB

View file

@ -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