ae733c
ae733c
Suppress gcc 10 warning.
ae733c
ae733c
--- subversion-1.14.0/subversion/tests/svn_test.h.testwarn
ae733c
+++ subversion-1.14.0/subversion/tests/svn_test.h
ae733c
@@ -128,7 +128,7 @@
ae733c
       return svn_error_createf(SVN_ERR_TEST_FAILED, NULL,           \
ae733c
           "Strings not equal\n  Expected: '%s'\n  Found:    '%s'"   \
ae733c
           "\n  at %s:%d",                                           \
ae733c
-          tst_str2, tst_str1, __FILE__, __LINE__);                  \
ae733c
+          tst_str2 ? tst_str2 : "(NULL)", tst_str1 ? tst_str1 : "(NULL)", __FILE__, __LINE__); \
ae733c
   } while(0)
ae733c
 
ae733c
  /** Handy macro for testing integer equality.