summaryrefslogtreecommitdiff
path: root/file_io/win32/filedup.c
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>1999-10-04 16:37:48 +0000
committerRyan Bloom <rbb@apache.org>1999-10-04 16:37:48 +0000
commit8a0633b4c9f2e1c8897855027cee55e0b12bf833 (patch)
treecc3bddffac57af165a495dc1e60091d9635ba19e /file_io/win32/filedup.c
parentc8b99c137ce0c20a37df392d9ee466877a5eb28a (diff)
downloadapr-8a0633b4c9f2e1c8897855027cee55e0b12bf833.tar.gz
First patch to re-order function parameters. This one gets the low hanging
fruit, and moves most of the result parameters to the first argument. Future patches in this series will move the rest of the result parameters to the beginning of the list, and will move the context's to the end of the list git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59259 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/win32/filedup.c')
-rw-r--r--file_io/win32/filedup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file_io/win32/filedup.c b/file_io/win32/filedup.c
index 2d3135a3b..95517f909 100644
--- a/file_io/win32/filedup.c
+++ b/file_io/win32/filedup.c
@@ -59,7 +59,7 @@
#include "apr_lib.h"
#include <string.h>
-ap_status_t ap_dupfile(struct file_t *old_file, struct file_t **new_file)
+ap_status_t ap_dupfile(struct file_t **new_file, struct file_t *old_file)
{
(*new_file) = (struct file_t *)ap_palloc(old_file->cntxt,
sizeof(struct file_t));