You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2015/12/04 00:05:06 UTC

svn commit: r1717871 - /subversion/trunk/subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c

Author: stefan2
Date: Thu Dec  3 23:05:05 2015
New Revision: 1717871

URL: http://svn.apache.org/viewvc?rev=1717871&view=rev
Log:
Follow-up to 1717869: Try to fix the compile error with VC .

* subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c
  (compare_0_length_rep): Add few more 'const's into the mix.

Modified:
    subversion/trunk/subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c

Modified: subversion/trunk/subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c?rev=1717871&r1=1717870&r2=1717871&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c Thu Dec  3 23:05:05 2015
@@ -1664,11 +1664,11 @@ compare_0_length_rep(const svn_test_opts
   apr_hash_t *fs_config;
 
   /* Test expectations. */
-  const char *no_rep_file = "no-rep";
-  const char *empty_plain_file = "empty-plain";
-  const char *plain_file = "plain";
-  const char *empty_delta_file = "empty-delta";
-  const char *delta_file = "delta";
+  const char * const no_rep_file = "no-rep";
+  const char * const empty_plain_file = "empty-plain";
+  const char * const plain_file = "plain";
+  const char * const empty_delta_file = "empty-delta";
+  const char * const delta_file = "delta";
 
   enum { COUNT = 5 };
   const char *file_names[COUNT] = { no_rep_file,