summaryrefslogtreecommitdiff
path: root/gv.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-10-25 01:30:48 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-10-25 01:30:48 +0000
commit462551cca365518deae1a599764d1a2b3698f44a (patch)
tree7f605e6698f457d67167b76ac7f9cd1d66b2827f /gv.c
parent3b9be7865898818454b3d13fdbbd6ea27287d5c9 (diff)
downloadperl-462551cca365518deae1a599764d1a2b3698f44a.tar.gz
avoid "mysterious" compile-time failures without messages
p4raw-id: //depot/perl@2049
Diffstat (limited to 'gv.c')
-rw-r--r--gv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gv.c b/gv.c
index e040a4139b..ad0d02d5d1 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) ? '%'