summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2002-12-06 20:42:01 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2002-12-06 20:42:01 +0000
commit1d239bbba2de439a8971f5436d867599b62848c8 (patch)
treeeef7516936efe473c70af62b051d08558df0eac4 /toke.c
parentd90a703e9b2a2038e53e20447f0482fe07515888 (diff)
downloadperl-1d239bbba2de439a8971f5436d867599b62848c8.tar.gz
Suppress a compilation warning reported by Jarkko
(variable initialization skipped by goto). p4raw-id: //depot/perl@18249
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/toke.c b/toke.c
index 722609b091..1abf12194e 100644
--- a/toke.c
+++ b/toke.c
@@ -2208,6 +2208,7 @@ Perl_yylex(pTHX)
GV *gv = Nullgv;
GV **gvp = 0;
bool bof = FALSE;
+ I32 orig_keyword = 0;
/* check if there's an identifier for us to look at */
if (PL_pending_ident)
@@ -3800,7 +3801,7 @@ Perl_yylex(pTHX)
case 'z': case 'Z':
keylookup: {
- I32 orig_keyword = 0;
+ orig_keyword = 0;
gv = Nullgv;
gvp = 0;