diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-01-16 16:37:47 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-01-16 16:37:47 +0000 |
commit | 628e1a40d854546bd93e9304795a0b62669c91c2 (patch) | |
tree | 7a102c2d04e15409ac916db7f582cc6268aea605 /utf8.c | |
parent | ff935051c0581ebaf8a1cbeb640d7c48ba85cbbc (diff) | |
download | perl-628e1a40d854546bd93e9304795a0b62669c91c2.tar.gz |
Continue qgcvt work; closer now but not yet there.
p4raw-id: //depot/cfgperl@4806
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69,7 +69,7 @@ Perl_uv_to_utf8(pTHX_ U8 *d, UV uv) return d; } #ifdef HAS_QUAD - if (uv < 0x1000000000) + if (uv < 0x1000000000LL) #endif { *d++ = 0xfe; /* Can't match U+FEFF! */ |