You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2011/02/19 17:02:11 UTC

svn commit: r1072367 - in /subversion/trunk/subversion/mod_dav_svn: dav_svn.h mod_dav_svn.c

Author: philip
Date: Sat Feb 19 16:02:11 2011
New Revision: 1072367

URL: http://svn.apache.org/viewvc?rev=1072367&view=rev
Log:
* subversion/mod_dav_svn/dav_svn.h
* subversion/mod_dav_svn/dav_svn.c
  (dav_svn__get_compression_level): Use void for empty parameter list.

Modified:
    subversion/trunk/subversion/mod_dav_svn/dav_svn.h
    subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c

Modified: subversion/trunk/subversion/mod_dav_svn/dav_svn.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/mod_dav_svn/dav_svn.h?rev=1072367&r1=1072366&r2=1072367&view=diff
==============================================================================
--- subversion/trunk/subversion/mod_dav_svn/dav_svn.h (original)
+++ subversion/trunk/subversion/mod_dav_svn/dav_svn.h Sat Feb 19 16:02:11 2011
@@ -371,7 +371,7 @@ const char *dav_svn__get_activities_db(r
 const char *dav_svn__get_root_dir(request_rec *r);
 
 /* Return the data compression level to be used over the wire. */
-int dav_svn__get_compression_level();
+int dav_svn__get_compression_level(void);
 
 /** For HTTP protocol v2, these are the new URIs and URI stubs
     returned to the client in our OPTIONS response.  They all depend

Modified: subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c?rev=1072367&r1=1072366&r2=1072367&view=diff
==============================================================================
--- subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c (original)
+++ subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c Sat Feb 19 16:02:11 2011
@@ -706,7 +706,7 @@ dav_svn__get_activities_db(request_rec *
 
 
 int
-dav_svn__get_compression_level()
+dav_svn__get_compression_level(void)
 {
   return svn__compression_level;
 }