summaryrefslogtreecommitdiff
path: root/subversion/libsvn_subr/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'subversion/libsvn_subr/debug.c')
-rw-r--r--subversion/libsvn_subr/debug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/subversion/libsvn_subr/debug.c b/subversion/libsvn_subr/debug.c
index be331ed..4681fa4 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);
}