diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2006-04-09 02:52:15 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2006-04-09 02:52:15 +0000 |
commit | 4d95ba93c0162080c8960333ba031587c7d8619d (patch) | |
tree | cd20a5c513d8d37d7a61ebd69c866057dc2c4e8c /file_io | |
parent | 0c812ad27d43a71cb67c70e998eb940c59cdb309 (diff) | |
download | apr-4d95ba93c0162080c8960333ba031587c7d8619d.tar.gz |
Fix cut-n-paste mismatches in adding these fn's - compiles clean on win32
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@392669 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r-- | file_io/win32/pipe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/file_io/win32/pipe.c b/file_io/win32/pipe.c index afa3341fd..1e940f20e 100644 --- a/file_io/win32/pipe.c +++ b/file_io/win32/pipe.c @@ -211,10 +211,10 @@ APR_DECLARE(apr_status_t) apr_os_pipe_put_ex(apr_file_t **file, (*file)->timeout = -1; (*file)->ungetchar = -1; (*file)->filehand = *thefile; - (void) apr_pollset_create(&(*file)->pollset, 1, p, 0); + (void) apr_pollset_create(&(*file)->pollset, 1, pool, 0); if (register_cleanup) { - apr_pool_cleanup_register(pool, *file, apr_file_cleanup, + apr_pool_cleanup_register(pool, *file, file_cleanup, apr_pool_cleanup_null); } |