diff options
author | Peter Wemm <peter@FreeBSD.org> | 2013-11-11 01:00:29 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2013-11-11 01:00:29 +0000 |
commit | 6573976d8d3ffbe3d00487ebc8c11e3eb4033f17 (patch) | |
tree | c05673887167c7ecd55a62ed72830f5186f453c1 /subversion/libsvn_ra | |
parent | 97551b2898eb459e9b616947d87d026d27b61518 (diff) |
Diffstat (limited to 'subversion/libsvn_ra')
-rw-r--r-- | subversion/libsvn_ra/ra_loader.c | 2 | ||||
-rw-r--r-- | subversion/libsvn_ra/ra_loader.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/subversion/libsvn_ra/ra_loader.c b/subversion/libsvn_ra/ra_loader.c index 91c9cc14bcc9f..d9cb96b9efe34 100644 --- a/subversion/libsvn_ra/ra_loader.c +++ b/subversion/libsvn_ra/ra_loader.c @@ -1436,7 +1436,7 @@ svn_ra_print_modules(svn_stringbuf_t *output, built with SASL. */ line = apr_psprintf(iterpool, "* ra_%s : %s\n", defn->ra_name, - vtable->get_description()); + vtable->get_description(iterpool)); svn_stringbuf_appendcstr(output, line); for (schemes = vtable->get_schemes(iterpool); *schemes != NULL; diff --git a/subversion/libsvn_ra/ra_loader.h b/subversion/libsvn_ra/ra_loader.h index 4d86121e6a5fb..227730aec2309 100644 --- a/subversion/libsvn_ra/ra_loader.h +++ b/subversion/libsvn_ra/ra_loader.h @@ -45,7 +45,7 @@ typedef struct svn_ra__vtable_t { /* Return a short description of the RA implementation, as a localized * string. */ - const char *(*get_description)(void); + const char *(*get_description)(apr_pool_t *pool); /* Return a list of actual URI schemes supported by this implementation. * The returned array is NULL-terminated. */ |