X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Ffree.c;h=ae208894d018a4f3a5e3dfc6cf40c782dc11f352;hb=e0691dfbc07d0b2a0e6bec528b33802ed04f5960;hp=f9569dd04a17d15f0ed6c4c89e412cc0514253e8;hpb=8c772985c7b7300665a30932d71d45c8af24af21;p=openldap diff --git a/libraries/libldap/free.c b/libraries/libldap/free.c index f9569dd04a..ae208894d0 100644 --- a/libraries/libldap/free.c +++ b/libraries/libldap/free.c @@ -37,19 +37,19 @@ ldap_memvfree( void **v ) } void * -ldap_memalloc( size_t s ) +ldap_memalloc( ber_len_t s ) { return LDAP_MALLOC( s ); } void * -ldap_memcalloc( size_t n, size_t s ) +ldap_memcalloc( ber_len_t n, ber_len_t s ) { return LDAP_CALLOC( n, s ); } void * -ldap_memrealloc( void* p, size_t s ) +ldap_memrealloc( void* p, ber_len_t s ) { return LDAP_REALLOC( p, s ); }