You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2012/09/05 19:13:14 UTC

svn commit: r1381254 - /subversion/trunk/subversion/include/private/svn_debug.h

Author: brane
Date: Wed Sep  5 17:13:13 2012
New Revision: 1381254

URL: http://svn.apache.org/viewvc?rev=1381254&view=rev
Log:
The svn_debug API uses APR hash tables but didn't include the header.

* subversion/include/private/svn_debug.h: Include apr_hash.h.
  Get stdio declarations through apr_want.h.

Modified:
    subversion/trunk/subversion/include/private/svn_debug.h

Modified: subversion/trunk/subversion/include/private/svn_debug.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/private/svn_debug.h?rev=1381254&r1=1381253&r2=1381254&view=diff
==============================================================================
--- subversion/trunk/subversion/include/private/svn_debug.h (original)
+++ subversion/trunk/subversion/include/private/svn_debug.h Wed Sep  5 17:13:13 2012
@@ -31,7 +31,9 @@
    ### remain in the code. at that point, we can rejigger this header.  */
 #ifdef SVN_DEBUG
 
-#include <stdio.h>
+#define APR_WANT_STDIO
+#include <apr_want.h>
+#include <apr_hash.h>
 
 #ifdef __cplusplus
 extern "C" {