From: Rafael Garcia-Suarez Date: Tue, 29 Mar 2005 06:14:18 +0000 (+0000) Subject: Don't #ifdef out a return statement X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a212c8b5d0b264f0c7351db7e22b3b1b1178ca8b;p=p5sagit%2Fp5-mst-13.2.git Don't #ifdef out a return statement p4raw-id: //depot/perl@24089 --- diff --git a/pad.c b/pad.c index b0cac8d..33b260f 100644 --- a/pad.c +++ b/pad.c @@ -437,8 +437,8 @@ Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype) #ifdef DEBUG_LEAKING_SCALARS sv->sv_debug_optype = optype; sv->sv_debug_inpad = 1; - return (PADOFFSET)retval; #endif + return (PADOFFSET)retval; } /*