summaryrefslogtreecommitdiff
path: root/threadproc/beos/threadpriv.c
diff options
context:
space:
mode:
Diffstat (limited to 'threadproc/beos/threadpriv.c')
-rw-r--r--threadproc/beos/threadpriv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/threadproc/beos/threadpriv.c b/threadproc/beos/threadpriv.c
index 162e37f6e..a19b1fe4f 100644
--- a/threadproc/beos/threadpriv.c
+++ b/threadproc/beos/threadpriv.c
@@ -81,7 +81,7 @@ APR_DECLARE(apr_status_t) apr_threadkey_private_set(void *priv, apr_threadkey_t
thread_id tid;
int i,index = 0, ret = 0;
- tid = find_thread(NULL);
+ tid = find_thread(NULL);
for (i=0; i < BEOS_MAX_DATAKEYS; i++){
if (beos_data[i]->data){
if (beos_data[i]->td == tid){index = i;}
@@ -165,7 +165,7 @@ APR_DECLARE(apr_status_t) apr_os_threadkey_get(apr_os_threadkey_t *thekey, apr_t
return APR_SUCCESS;
}
-APR_DECLARE(apr_status_t) apr_os_threadkey_put(apr_threadkey_t **key,
+APR_DECLARE(apr_status_t) apr_os_threadkey_put(apr_threadkey_t **key,
apr_os_threadkey_t *thekey, apr_pool_t *pool)
{
if (pool == NULL) {