diff options
author | Peter Wemm <peter@FreeBSD.org> | 2015-10-12 08:54:49 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2015-10-12 08:54:49 +0000 |
commit | dc5d469d6574e9fb03bdd793658bb371315b306a (patch) | |
tree | 013c2e6845398e5a9ca4901dcc077769c7520e1d /subversion/libsvn_subr/debug.c | |
parent | 58218291fa73a17020ef0447398e9e8a78f9e8c7 (diff) |
Notes
Diffstat (limited to 'subversion/libsvn_subr/debug.c')
-rw-r--r-- | subversion/libsvn_subr/debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/subversion/libsvn_subr/debug.c b/subversion/libsvn_subr/debug.c index be331ed775553..4681fa4654a7f 100644 --- a/subversion/libsvn_subr/debug.c +++ b/subversion/libsvn_subr/debug.c @@ -80,7 +80,7 @@ static void debug_vprintf(const char *fmt, va_list ap) { FILE *output = debug_output; - char prefix[80], buffer[1000]; + char prefix[80], buffer[4096]; char *s = buffer; int n; @@ -145,8 +145,8 @@ svn_dbg__print_props(apr_hash_t *props, for (hi = apr_hash_first(apr_hash_pool_get(props), props); hi; hi = apr_hash_next(hi)) { - const char *name = svn__apr_hash_index_key(hi); - svn_string_t *val = svn__apr_hash_index_val(hi); + const char *name = apr_hash_this_key(hi); + svn_string_t *val = apr_hash_this_val(hi); svn_dbg__printf(" '%s' -> '%s'\n", name, val->data); } |