summaryrefslogtreecommitdiff
path: root/pp_hot.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2003-11-29 14:44:56 +0000
committerNicholas Clark <nick@ccl4.org>2003-11-29 14:44:56 +0000
commit5637b936cb148bd00c5ba537226e6be70c258de5 (patch)
treec2a2a41825ad949ee91f00f9bba00179f8f5f2e4 /pp_hot.c
parent6b169c738013e37008468e17b428fca5b8142a66 (diff)
downloadperl-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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pp_hot.c b/pp_hot.c
index 0bcb7bde25..efc7a27071 100644
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -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;