expat/tests minicheck.c,1.3,1.4

"Fred L. Drake" <[email protected]> Fri, 28 Jan 2005 08:16:17 -0800
Newsgroups gmane.text.xml.expat.cvs
Message-ID <[email protected]>
Update of /cvsroot/expat/expat/tests
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15751

Modified Files:
	minicheck.c 
Log Message:
make errors reported display more like GCC error messages, so editors
like Emacs can provide functions like "go to next error", etc.


Index: minicheck.c
===================================================================
RCS file: /cvsroot/expat/expat/tests/minicheck.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- minicheck.c	28 Jan 2005 06:32:30 -0000	1.3
+++ minicheck.c	28 Jan 2005 16:16:14 -0000	1.4
@@ -108,8 +108,8 @@
 {
     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);
     }
 }