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

svn commit: r1029230 - /subversion/branches/performance/subversion/libsvn_fs_fs/caching.c

Author: danielsh
Date: Sun Oct 31 01:12:06 2010
New Revision: 1029230

URL: http://svn.apache.org/viewvc?rev=1029230&view=rev
Log:
On the 'performance' branch:

* subversion/libsvn_fs_fs/caching.c
  (svn_fs_fs__initialize_caches):
    Cast a NULL in a variadic function call, for correctness and for
    consistency with the rest of the file.

Modified:
    subversion/branches/performance/subversion/libsvn_fs_fs/caching.c

Modified: subversion/branches/performance/subversion/libsvn_fs_fs/caching.c
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/libsvn_fs_fs/caching.c?rev=1029230&r1=1029229&r2=1029230&view=diff
==============================================================================
--- subversion/branches/performance/subversion/libsvn_fs_fs/caching.c (original)
+++ subversion/branches/performance/subversion/libsvn_fs_fs/caching.c Sun Oct 31 01:12:06 2010
@@ -243,7 +243,7 @@ svn_fs_fs__initialize_caches(svn_fs_t *f
                                                 apr_pstrcat(pool,
                                                             prefix,
                                                             "NODEREVS",
-                                                            NULL),
+                                                            (char*) NULL),
                                                 fs->pool));
     }
   else