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 2011/07/04 23:24:15 UTC

svn commit: r1142810 - /subversion/branches/svn_mutex/subversion/include/private/svn_mutex.h

Author: stefan2
Date: Mon Jul  4 21:24:14 2011
New Revision: 1142810

URL: http://svn.apache.org/viewvc?rev=1142810&view=rev
Log:
* subversion/include/private/svn_mutex.h
  (svn_mutex__t): ensure we cannot access its content when threads are not supported

Suggested by: danielsh

Modified:
    subversion/branches/svn_mutex/subversion/include/private/svn_mutex.h

Modified: subversion/branches/svn_mutex/subversion/include/private/svn_mutex.h
URL: http://svn.apache.org/viewvc/subversion/branches/svn_mutex/subversion/include/private/svn_mutex.h?rev=1142810&r1=1142809&r2=1142810&view=diff
==============================================================================
--- subversion/branches/svn_mutex/subversion/include/private/svn_mutex.h (original)
+++ subversion/branches/svn_mutex/subversion/include/private/svn_mutex.h Mon Jul  4 21:24:14 2011
@@ -51,7 +51,7 @@ typedef apr_thread_mutex_t svn_mutex__t;
 
 /** Dummy definition. The content will never be actually accessed.
  */
-typedef int svn_mutex__t;
+typedef void svn_mutex__t;
 
 #endif