summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-01-16 16:37:47 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-01-16 16:37:47 +0000
commit628e1a40d854546bd93e9304795a0b62669c91c2 (patch)
tree7a102c2d04e15409ac916db7f582cc6268aea605 /utf8.c
parentff935051c0581ebaf8a1cbeb640d7c48ba85cbbc (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index 7bae55cb84..0153fd6cd8 100644
--- a/utf8.c
+++ b/utf8.c
@@ -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! */