diff options
author | Nicholas Clark <nick@ccl4.org> | 2003-11-29 14:44:56 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2003-11-29 14:44:56 +0000 |
commit | 5637b936cb148bd00c5ba537226e6be70c258de5 (patch) | |
tree | c2a2a41825ad949ee91f00f9bba00179f8f5f2e4 /pp_hot.c | |
parent | 6b169c738013e37008468e17b428fca5b8142a66 (diff) | |
download | perl-5637b936cb148bd00c5ba537226e6be70c258de5.tar.gz |
Silence gcc 2.95 warning
(Its trace flow isn't good enough to realise that there is no problem)
p4raw-id: //depot/perl@21805
Diffstat (limited to 'pp_hot.c')
-rw-r--r-- | pp_hot.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -967,7 +967,8 @@ PP(pp_aassign) I32 i; int magic; int duplicates = 0; - SV **firsthashrelem; + SV **firsthashrelem = 0; /* "= 0" keeps gcc 2.95 quiet */ + PL_delaymagic = DM_DELAY; /* catch simultaneous items */ gimme = GIMME_V; |