From 0eccc83de27b0e9c303cf10ad2a289c59692fe76 Mon Sep 17 00:00:00 2001 From: Sergey Alekseev Date: Fri, 9 Aug 2013 19:55:59 +0600 Subject: Function name typo in malloc.c Error was also spotted by mauke. For: RT #119213 --- malloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'malloc.c') diff --git a/malloc.c b/malloc.c index beaaa2f0e6..41d75da078 100644 --- a/malloc.c +++ b/malloc.c @@ -1213,7 +1213,7 @@ cmp_pat_4bytes(unsigned char *s, size_t nbytes, const unsigned char *fill) #endif int -S_ajust_size_and_find_bucket(size_t *nbytes_p) +S_adjust_size_and_find_bucket(size_t *nbytes_p) { MEM_SIZE shiftr; int bucket; @@ -1273,7 +1273,7 @@ Perl_malloc(size_t nbytes) croak("%s", "panic: malloc"); #endif - bucket = S_ajust_size_and_find_bucket(&nbytes); + bucket = S_adjust_size_and_find_bucket(&nbytes); MALLOC_LOCK; /* * If nothing in hash bucket right now, @@ -2173,7 +2173,7 @@ Perl_malloced_size(void *p) MEM_SIZE Perl_malloc_good_size(size_t wanted) { - return BUCKET_SIZE_REAL(S_ajust_size_and_find_bucket(&wanted)); + return BUCKET_SIZE_REAL(S_adjust_size_and_find_bucket(&wanted)); } # ifdef BUCKETS_ROOT2 -- cgit v1.2.1