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:26 UTC

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

Author: fuankg
Date: Fri Oct 16 14:43:25 2009
New Revision: 825912

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

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

Modified: apr/apr-util/branches/1.4.x/test/abts.c
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.4.x/test/abts.c?rev=825912&r1=825911&r2=825912&view=diff
==============================================================================
--- apr/apr-util/branches/1.4.x/test/abts.c (original)
+++ apr/apr-util/branches/1.4.x/test/abts.c Fri Oct 16 14:43:25 2009
@@ -293,7 +293,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);
     }
 }