diff options
author | Ryan Bloom <rbb@apache.org> | 1999-10-08 18:53:29 +0000 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 1999-10-08 18:53:29 +0000 |
commit | 52f510df3b79151e576e845b321b55aa8aece3a5 (patch) | |
tree | 7285c4cdc033d4da39c780d24aef3aab373bd07d /locks/os2/locks.c | |
parent | 4f9c98b4ad7835d204185a7e2587f9cd9cb8660a (diff) | |
download | apr-52f510df3b79151e576e845b321b55aa8aece3a5.tar.gz |
Parameter order change for the locks directory. They are all up to
APR's current argument order spec.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59292 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'locks/os2/locks.c')
-rw-r--r-- | locks/os2/locks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/locks/os2/locks.c b/locks/os2/locks.c index a2e46eed3..69d69dc05 100644 --- a/locks/os2/locks.c +++ b/locks/os2/locks.c @@ -70,7 +70,7 @@ ap_status_t lock_cleanup(void *thelock) -ap_status_t ap_create_lock(struct lock_t **lock, ap_context_t *cont, ap_locktype_e type, char *fname) +ap_status_t ap_create_lock(struct lock_t **lock, ap_locktype_e type, char *fname, ap_context_t *cont) { struct lock_t *new; ULONG rc; |