fix compiler warning
authorJesse Luehrs <doy@tozt.net>
Thu, 17 Oct 2013 19:43:54 +0000 (15:43 -0400)
committerJesse Luehrs <doy@tozt.net>
Thu, 17 Oct 2013 19:43:54 +0000 (15:43 -0400)
toke.c

diff --git a/toke.c b/toke.c
index f9977d2..28e3511 100644 (file)
--- 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;