diff options
| author | Igor Burago <igor@igorburago.com> | 2022-07-28 17:02:43 +0800 |
|---|---|---|
| committer | Dan Cross <crossd@gmail.com> | 2023-03-30 10:44:30 -0400 |
| commit | 0790296f7313acc91cff47286e4f156304b2161c (patch) | |
| tree | a9b9cae977a9d084e71a02b9b47fad2e0ea30bcb /src | |
| parent | 6c0efecd1303f22f86194d6eee7038651582f086 (diff) | |
plumber: increase NMATCHSUBEXP up to libregexp's NSUBEXP
Diffstat (limited to 'src')
| -rw-r--r-- | src/cmd/plumb/plumber.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/plumb/plumber.h b/src/cmd/plumb/plumber.h index 65d5d0ac..6b02cb61 100644 --- a/src/cmd/plumb/plumber.h +++ b/src/cmd/plumb/plumber.h @@ -54,7 +54,7 @@ struct Ruleset enum { - NMATCHSUBEXP = 10 + NMATCHSUBEXP = 32 /* bounded by ../../libregexp/regcomp.h:/NSUBEXP */ }; struct Exec |