Change 11298 by jhi@alpha on 2001/07/12 12:27:47
Subject: RE: Win32 Failure, was Re: perl@11278 - LAST CALL FOR 5.7.2
From: "Konovalov, Vadim Vladimirovich (Vadim)" <[EMAIL PROTECTED]>
Date: Thu, 12 Jul 2001 09:09:48 +0200
Message-ID: <E3FB32585BF1D411B9E900805FF51A0808CE70@RU0022EXCH001U>
More parentheses to keep bcc happy.
Affected files ...
... //depot/perl/ext/ByteLoader/bytecode.h#20 edit
Differences ...
==== //depot/perl/ext/ByteLoader/bytecode.h#20 (text) ====
Index: perl/ext/ByteLoader/bytecode.h
--- perl/ext/ByteLoader/bytecode.h.~1~ Thu Jul 12 06:30:05 2001
+++ perl/ext/ByteLoader/bytecode.h Thu Jul 12 06:30:05 2001
@@ -132,8 +132,8 @@
hv_store((HV*)sv, bstate->bs_pv.xpv_pv, bstate->bs_pv.xpv_cur, arg, 0)
#define BSET_pv_free(pv) Safefree(pv.xpv_pv)
#define BSET_pregcomp(o, arg) \
- (PM_SETRE(((PMOP*)o), arg ? \
- CALLREGCOMP(aTHX_ arg, arg + bstate->bs_pv.xpv_cur, ((PMOP*)o)) : 0))
+ (PM_SETRE((((PMOP*)o), arg ? \
+ CALLREGCOMP(aTHX_ arg, arg + bstate->bs_pv.xpv_cur, ((PMOP*)o)) : 0)))
#define BSET_newsv(sv, arg) \
STMT_START { \
sv = (arg == SVt_PVAV ? (SV*)newAV() : \
End of Patch.