diff options
author | Ian Holsman <ianh@apache.org> | 2001-09-09 16:04:59 +0000 |
---|---|---|
committer | Ian Holsman <ianh@apache.org> | 2001-09-09 16:04:59 +0000 |
commit | 951851d74c74e2e64b2e4e2487e33ef83690367b (patch) | |
tree | 19e36ae5bb34ac1cbf5b854dd7bebf21b98862f3 /file_io/unix/filepath.c | |
parent | 478f7c8b1430dda265039f9d5f3ee62de9f5fad3 (diff) | |
download | apr-951851d74c74e2e64b2e4e2487e33ef83690367b.tar.gz apr-951851d74c74e2e64b2e4e2487e33ef83690367b.zip |
fix breakage caused by last update
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62299 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/unix/filepath.c')
-rw-r--r-- | file_io/unix/filepath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/file_io/unix/filepath.c b/file_io/unix/filepath.c index be4dd3b19..d11350719 100644 --- a/file_io/unix/filepath.c +++ b/file_io/unix/filepath.c @@ -171,7 +171,7 @@ APR_DECLARE(apr_status_t) apr_filepath_merge(char **newpath, * passing the address of a char const* for a char** arg. */ char *getpath; - rv = apr_filepath_get(&getpath, apr_int32_t flags, p); + rv = apr_filepath_get(&getpath, flags, p); rootpath = getpath; if (rv != APR_SUCCESS) return errno; |