summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-10-17 15:43:54 -0400
committerJesse Luehrs <doy@tozt.net>2013-10-17 15:43:54 -0400
commit80931db166568dce568bdcb2dea79a1dfebf1c15 (patch)
tree459ed8faed03da525b4ea3a29faa2dc06d2abf5c /toke.c
parent2e0c851594e3dc44be9c49a874cfd3b8bee956d3 (diff)
downloadperl-80931db166568dce568bdcb2dea79a1dfebf1c15.tar.gz
fix compiler warning
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toke.c b/toke.c
index f9977d24ec..28e3511ebd 100644
--- a/toke.c
+++ b/toke.c
@@ -9427,7 +9427,7 @@ S_scan_ident(pTHX_ char *s, char *dest, STRLEN destlen, I32 ck_uni)
char *d = dest;
char * const e = d + destlen - 3; /* two-character token, ending NUL */
bool is_utf8 = cBOOL(UTF);
- I32 orig_copline, tmp_copline = 0;
+ I32 orig_copline = 0, tmp_copline = 0;
PERL_ARGS_ASSERT_SCAN_IDENT;