summaryrefslogtreecommitdiff
path: root/locks/beos
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-10-04 16:37:48 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-10-04 16:37:48 +0000
commit636a5b651386b67ebf0319d23ffb6a644733c3a6 (patch)
treecc3bddffac57af165a495dc1e60091d9635ba19e /locks/beos
parent8b551a56788f93740c5afc5b52ef7ef4bdc28c43 (diff)
downloadlibapr-636a5b651386b67ebf0319d23ffb6a644733c3a6.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: http://svn.apache.org/repos/asf/apr/apr/trunk@59259 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'locks/beos')
-rw-r--r--locks/beos/locks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/locks/beos/locks.c b/locks/beos/locks.c
index ca50665e1..3deda906e 100644
--- a/locks/beos/locks.c
+++ b/locks/beos/locks.c
@@ -59,7 +59,7 @@
#include <strings.h>
#include <stdio.h>
-ap_status_t ap_create_lock(ap_context_t *cont, ap_locktype_e type, char *fname, struct lock_t **lock)
+ap_status_t ap_create_lock(struct lock_t **lock, ap_context_t *cont, ap_locktype_e type, char *fname)
{
struct lock_t *new;
ap_status_t stat;