From e2677da42caeb87eaaf18df7d60df71b1944f26a Mon Sep 17 00:00:00 2001 From: "Fred L. Drake, Jr." Date: Fri, 28 Jan 2005 16:16:14 +0000 Subject: [PATCH] make errors reported display more like GCC error messages, so editors like Emacs can provide functions like "go to next error", etc. --- expat/tests/minicheck.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/expat/tests/minicheck.c b/expat/tests/minicheck.c index 21cc8c7f..25fbf858 100644 --- a/expat/tests/minicheck.c +++ b/expat/tests/minicheck.c @@ -108,8 +108,8 @@ add_failure(SRunner *runner, int verbosity) { runner->nfailures++; if (verbosity >= CK_VERBOSE) { - printf("%s:%s:%d\n", _check_current_function, - _check_current_filename, _check_current_lineno); + printf("%s:%d: %s\n", _check_current_filename, + _check_current_lineno, _check_current_function); } }