You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by fu...@apache.org on 2009/10/16 16:43:58 UTC

svn commit: r825913 - /apr/apr/branches/1.4.x/test/abts.c

Author: fuankg
Date: Fri Oct 16 14:43:57 2009
New Revision: 825913

URL: http://svn.apache.org/viewvc?rev=825913&view=rev
Log:
Backport r824549: fixed error message in abts_ptr_notnull()

Modified:
    apr/apr/branches/1.4.x/test/abts.c

Modified: apr/apr/branches/1.4.x/test/abts.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/test/abts.c?rev=825913&r1=825912&r2=825913&view=diff
==============================================================================
--- apr/apr/branches/1.4.x/test/abts.c (original)
+++ apr/apr/branches/1.4.x/test/abts.c Fri Oct 16 14:43:57 2009
@@ -306,7 +306,7 @@
 
     tc->failed = TRUE;
     if (verbose) {
-        fprintf(stderr, "Line %d: Expected NULL, but saw <%p>\n", lineno, ptr);
+        fprintf(stderr, "Line %d: expected non-NULL, but saw NULL\n", lineno);
         fflush(stderr);
     }
 }