summaryrefslogtreecommitdiff
path: root/src/pcre2_xclass.c
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2019-04-12 14:40:27 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2019-04-12 14:40:27 +0000
commit7e3dd80809ec0f6b16df60e17effcfd4fc445aeb (patch)
tree5a11d8e78c6b025705ce9ff7bdf53fa9b38057b3 /src/pcre2_xclass.c
parent706a1c624c591e404a7739b49fd33830427ff2af (diff)
downloadpcre2-7e3dd80809ec0f6b16df60e17effcfd4fc445aeb.tar.gz
Change a number of expressions like 1<<10 to 1u<<10.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@1083 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'src/pcre2_xclass.c')
-rw-r--r--src/pcre2_xclass.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pcre2_xclass.c b/src/pcre2_xclass.c
index 407d3f5..8b052be 100644
--- a/src/pcre2_xclass.c
+++ b/src/pcre2_xclass.c
@@ -7,7 +7,7 @@ and semantics are as close as possible to those of the Perl 5 language.
Written by Philip Hazel
Original API code Copyright (c) 1997-2012 University of Cambridge
- New API code Copyright (c) 2016 University of Cambridge
+ New API code Copyright (c) 2016-2019 University of Cambridge
-----------------------------------------------------------------------------
Redistribution and use in source and binary forms, with or without
@@ -85,10 +85,10 @@ if (c < 256)
if ((*data & XCL_HASPROP) == 0)
{
if ((*data & XCL_MAP) == 0) return negated;
- return (((uint8_t *)(data + 1))[c/8] & (1 << (c&7))) != 0;
+ return (((uint8_t *)(data + 1))[c/8] & (1u << (c&7))) != 0;
}
if ((*data & XCL_MAP) != 0 &&
- (((uint8_t *)(data + 1))[c/8] & (1 << (c&7))) != 0)
+ (((uint8_t *)(data + 1))[c/8] & (1u << (c&7))) != 0)
return !negated; /* char found */
}