diff options
author | Jesse Luehrs <doy@tozt.net> | 2013-10-17 15:43:54 -0400 |
---|---|---|
committer | Jesse Luehrs <doy@tozt.net> | 2013-10-17 15:43:54 -0400 |
commit | 80931db166568dce568bdcb2dea79a1dfebf1c15 (patch) | |
tree | 459ed8faed03da525b4ea3a29faa2dc06d2abf5c /toke.c | |
parent | 2e0c851594e3dc44be9c49a874cfd3b8bee956d3 (diff) | |
download | perl-80931db166568dce568bdcb2dea79a1dfebf1c15.tar.gz |
fix compiler warning
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |