X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=gv.c;h=b24c83e28f32e2742b5b7069e0285ee13fdab56a;hb=c3bddb1d8f216d2ee6362d46156d74303ed87611;hp=a89e900bf83d05a3a85cccd2a760b524fc5d4216;hpb=e189a56d832d31da4b6bb0fcf7dfde76e1fc4b24;p=p5sagit%2Fp5-mst-13.2.git diff --git a/gv.c b/gv.c index a89e900..b24c83e 100644 --- a/gv.c +++ b/gv.c @@ -652,7 +652,7 @@ Perl_gv_fetchpv(pTHX_ const char *nambeg, I32 add, I32 sv_type) char smallbuf[256]; char *tmpbuf; - if (len + 3 < sizeof smallbuf) + if (len + 3 < sizeof (smallbuf)) tmpbuf = smallbuf; else New(601, tmpbuf, len+3, char);