dreid 01/04/25 02:00:50
Modified: dso/beos dso.c
Log:
Fix the build after Doug M's commit.
Revision Changes Path
1.19 +2 -2 apr/dso/beos/dso.c
Index: dso.c
===================================================================
RCS file: /home/cvs/apr/dso/beos/dso.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- dso.c 2001/04/22 21:05:40 1.18
+++ dso.c 2001/04/25 09:00:47 1.19
@@ -114,11 +114,11 @@
}
APR_DECLARE(apr_status_t) apr_os_dso_handle_put(apr_dso_handle_t **aprdso,
- apr_os_dso_handle_t *osdso,
+ apr_os_dso_handle_t osdso,
apr_pool_t *pool)
{
*aprdso = apr_pcalloc(pool, sizeof **aprdso);
- (*aprdso)->handle = *osdso;
+ (*aprdso)->handle = osdso;
(*aprdso)->cont = pool;
return APR_SUCCESS;
}