You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2010/09/16 10:07:12 UTC

svn commit: r997635 - /subversion/branches/object-model/subversion/tests/svn_test.h

Author: hwright
Date: Thu Sep 16 08:07:12 2010
New Revision: 997635

URL: http://svn.apache.org/viewvc?rev=997635&view=rev
Log:
On the object-model branch:

* subversion/tests/svn_test.h
  (SVN_TEST_NULL): Make the null content explicit, to satisfy the C++ compiler.

Modified:
    subversion/branches/object-model/subversion/tests/svn_test.h

Modified: subversion/branches/object-model/subversion/tests/svn_test.h
URL: http://svn.apache.org/viewvc/subversion/branches/object-model/subversion/tests/svn_test.h?rev=997635&r1=997634&r2=997635&view=diff
==============================================================================
--- subversion/branches/object-model/subversion/tests/svn_test.h (original)
+++ subversion/branches/object-model/subversion/tests/svn_test.h Thu Sep 16 08:07:12 2010
@@ -125,7 +125,7 @@ struct svn_test_descriptor_t
 extern struct svn_test_descriptor_t test_funcs[];
 
 /* A null initializer for the test descriptor. */
-#define SVN_TEST_NULL  {0}
+#define SVN_TEST_NULL  { svn_test_pass, NULL, NULL, NULL, NULL }
 
 /* Initializer for PASS tests */
 #define SVN_TEST_PASS2(func, msg)  {svn_test_pass, func, NULL, msg}