summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2022-07-20 14:09:05 +0100
committerPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2022-07-20 14:09:05 +0100
commit1805204a9003b0cb3dabcdd39680a3a8dbd6ce10 (patch)
tree3d25f9f5ae1c4c30fc3cbb46323b25d53da642a3
parentf98a2322bc85e4c02c26642730743969df0937bb (diff)
downloadperl-1805204a9003b0cb3dabcdd39680a3a8dbd6ce10.tar.gz
Whitespace fix in av.c / Perl_newAVhv
-rw-r--r--av.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/av.c b/av.c
index d807c8695a..5ed203de04 100644
--- a/av.c
+++ b/av.c
@@ -527,7 +527,7 @@ Perl_newAVhv(pTHX_ HV *ohv)
/* This number isn't perfect but it doesn't matter; it only has to be
* close to make the initial allocation about the right size
*/
- AV *ret = newAV_alloc_xz( nkeys ? nkeys * 2 : 2);
+ AV *ret = newAV_alloc_xz(nkeys ? nkeys * 2 : 2);
/* avoid ret being leaked if croak when calling magic below */
EXTEND_MORTAL(1);