summaryrefslogtreecommitdiff
path: root/src/pcre2_maketables.c
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2019-03-04 18:07:04 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2019-03-04 18:07:04 +0000
commitac88fdeee3bdeec86cdd097c1c66ae0bcbcecd48 (patch)
tree2d9c080d6a47ddb4935b89e4df5473fb19252d7e /src/pcre2_maketables.c
parent1b123caefd55a510653b3933b037d3bcab39cba9 (diff)
downloadpcre2-ac88fdeee3bdeec86cdd097c1c66ae0bcbcecd48.tar.gz
More file tidies for 10.33-RC1
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@1079 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'src/pcre2_maketables.c')
-rw-r--r--src/pcre2_maketables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcre2_maketables.c b/src/pcre2_maketables.c
index d40c2f1..1c66579 100644
--- a/src/pcre2_maketables.c
+++ b/src/pcre2_maketables.c
@@ -138,7 +138,7 @@ for (i = 0; i < 256; i++)
int x = 0;
if (isspace(i)) x += ctype_space;
if (isalpha(i)) x += ctype_letter;
- if (islower(i)) x += ctype_lcletter;
+ if (islower(i)) x += ctype_lcletter;
if (isdigit(i)) x += ctype_digit;
if (isalnum(i) || i == '_') x += ctype_word;
*p++ = x;