aboutsummaryrefslogtreecommitdiff
path: root/src/libregexp
diff options
context:
space:
mode:
authorRuss Cox <rsc@swtch.com>2017-01-06 16:32:31 -0500
committerRuss Cox <rsc@swtch.com>2017-01-06 21:37:31 +0000
commit310ae03327a815e721166b64aa3af27b1cc8c2ff (patch)
tree3aaf93aaf66d29658ec8da82b3b09c1a6d941660 /src/libregexp
parent9e0d3750c543de49ccc43512cb3fbaa1f42f1648 (diff)
downloadplan9port-310ae03327a815e721166b64aa3af27b1cc8c2ff.tar.gz
plan9port-310ae03327a815e721166b64aa3af27b1cc8c2ff.tar.bz2
plan9port-310ae03327a815e721166b64aa3af27b1cc8c2ff.zip
all: fix or silence all INSTALL warnings on macOS
Should be a clean build now. Change-Id: Id3460371cb5e8d4071f8faa9c2aec870d213a067 Reviewed-on: https://plan9port-review.googlesource.com/2781 Reviewed-by: Russ Cox <rsc@swtch.com>
Diffstat (limited to 'src/libregexp')
-rw-r--r--src/libregexp/regcomp.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libregexp/regcomp.c b/src/libregexp/regcomp.c
index d9deb135..cd299a54 100644
--- a/src/libregexp/regcomp.c
+++ b/src/libregexp/regcomp.c
@@ -15,9 +15,6 @@ struct Node
Reinst* last;
}Node;
-/* max character classes per program is nelem(reprog->class) */
-static Reprog *reprog;
-
/* max rune ranges per character class is nelem(classp->spans)/2 */
#define NCCRUNE nelem(classp->spans)
@@ -327,7 +324,7 @@ dump(Reprog *pp)
static Reclass*
newclass(void)
{
- if(nclass >= nelem(reprog->class))
+ if(nclass >= nelem(((Reprog*)0)->class))
rcerror("too many character classes; increase Reprog.class size");
return &(classp[nclass++]);
}