summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-07-26 05:07:05 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-07-26 05:07:05 +0000
commita176fa2a176313dc1a9b9594d080f47292ff4070 (patch)
tree84b70d108cda787375cc8e20221d4f319b96e18d /toke.c
parent2d47f9631e4507635394284706f31b5286b80fcb (diff)
downloadperl-a176fa2a176313dc1a9b9594d080f47292ff4070.tar.gz
add new files to MANIFEST; add missing prototypes to proto.h;
s/PL_utf8skip/utf8skip/ for now, or we end up with Perl_PL_; add typecasts to silence warnings; tweaks for win32 builds p4raw-id: //depot/perl@1663
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 9f9631990b..13cc965cd1 100644
--- a/toke.c
+++ b/toke.c
@@ -915,7 +915,7 @@ scan_const(char *start)
/* range begins (ignore - as first or last char) */
else if (*s == '-' && s+1 < send && s != start) {
if (utf) {
- *d++ = 0xff; /* use illegal utf8 byte--see pmtrans */
+ *d++ = (char)0xff; /* use illegal utf8 byte--see pmtrans */
s++;
continue;
}