diff options
Diffstat (limited to 'misc/win32/start.c')
-rw-r--r-- | misc/win32/start.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/win32/start.c b/misc/win32/start.c index 6c3b54808..89913672e 100644 --- a/misc/win32/start.c +++ b/misc/win32/start.c @@ -144,7 +144,7 @@ ap_status_t ap_get_oslevel(ap_context_t *cont, ap_oslevel_e *level) ap_status_t ap_set_userdata(void *data, char *key, ap_status_t (*cleanup) (void *), - struct ap_context_t *cont) + ap_context_t *cont) { datastruct *dptr = NULL, *dptr2 = NULL; if (cont) { @@ -174,7 +174,7 @@ ap_status_t ap_set_userdata(void *data, char *key, return APR_ENOCONT; } -ap_status_t ap_get_userdata(void **data, char *key, struct ap_context_t *cont) +ap_status_t ap_get_userdata(void **data, char *key, ap_context_t *cont) { datastruct *dptr = NULL; if (cont) { |