From: Gurusamy Sarathy Date: Sun, 25 Oct 1998 01:30:48 +0000 (+0000) Subject: avoid "mysterious" compile-time failures without messages X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=462551cca365518deae1a599764d1a2b3698f44a;p=p5sagit%2Fp5-mst-13.2.git avoid "mysterious" compile-time failures without messages p4raw-id: //depot/perl@2049 --- diff --git a/gv.c b/gv.c index e040a41..ad0d02d 100644 --- a/gv.c +++ b/gv.c @@ -566,7 +566,7 @@ gv_fetchpv(char *nambeg, I32 add, I32 sv_type) if (!stash) { if (!add) return Nullgv; - if (add & ~GV_ADDMULTI) { + { char sv_type_char = ((sv_type == SVt_PV) ? '$' : (sv_type == SVt_PVAV) ? '@' : (sv_type == SVt_PVHV) ? '%'