You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by pb...@apache.org on 2010/10/20 23:13:13 UTC

svn commit: r1025754 - /subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c

Author: pburba
Date: Wed Oct 20 21:13:13 2010
New Revision: 1025754

URL: http://svn.apache.org/viewvc?rev=1025754&view=rev
Log:
Follow-up to r1025595, fix broken Windows build.

* subversion/tests/libsvn_wc/op-depth-test.c
  (subtest): Not so fast gcc, C89 requires an initializer list to be
   non-empty.

Modified:
    subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c

Modified: subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c?rev=1025754&r1=1025753&r2=1025754&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c Wed Oct 20 21:13:13 2010
@@ -468,7 +468,7 @@ wc_wc_copies(const svn_test_opts_t *opts
             { 4, "E-copied/beta",   "normal",   NO_COPY_FROM }
           } },
 
-        { NULL, NULL, {} }
+          { NULL, NULL, {0} }
       };
     struct subtest_t *subtest;