summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordreid <dreid@13f79535-47bb-0310-9956-ffa450edef68>2001-05-13 14:43:49 +0000
committerdreid <dreid@13f79535-47bb-0310-9956-ffa450edef68>2001-05-13 14:43:49 +0000
commit74f274469d7276ae3d910000edacc43a456b5c90 (patch)
treef708fbc17faddee95b09ff0178abb82478fa35e6 /include
parent8530951608cd115d1e28e5d5cfd9319f9c48cfd6 (diff)
downloadlibapr-74f274469d7276ae3d910000edacc43a456b5c90.tar.gz
This should get the memory code building again and also added
a patch from Sander Striker that gets apr_sms_destroy returning an apr_status_t correctly. Submitted by: Sander Striker <striker@samba-tng.org> Reviewed by: David Reid <dreid@apache.org> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61628 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_memory_system.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/apr_memory_system.h b/include/apr_memory_system.h
index 46f6b7c46..d34ecc16b 100644
--- a/include/apr_memory_system.h
+++ b/include/apr_memory_system.h
@@ -98,7 +98,7 @@ struct apr_sms_t
apr_status_t (*free_fn)(apr_sms_t *mem_sys, void *memory);
apr_status_t (*reset_fn)(apr_sms_t *mem_sys);
void (*pre_destroy_fn)(apr_sms_t *mem_sys);
- void (*destroy_fn)(apr_sms_t *mem_sys);
+ apr_status_t (*destroy_fn)(apr_sms_t *mem_sys);
void (*threadsafe_lock_fn)(apr_sms_t *mem_sys);
void (*threadsafe_unlock_fn)(apr_sms_t *mem_sys);
};