diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-03-29 21:32:53 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-03-29 21:32:53 +0200 |
commit | 19a22c41661c3b032c9cdcfd6913373526c025c8 (patch) | |
tree | c4a4748899ce3fd78949ad39e6e5a1261bea6569 /re.c | |
parent | b85b04e80466b60892bb1533e33af267ecb1c2a6 (diff) | |
download | egawk-19a22c41661c3b032c9cdcfd6913373526c025c8.tar.gz egawk-19a22c41661c3b032c9cdcfd6913373526c025c8.tar.bz2 egawk-19a22c41661c3b032c9cdcfd6913373526c025c8.zip |
Sync dfa with grep. Update configure machinery.
Diffstat (limited to 're.c')
-rw-r--r-- | re.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -268,7 +268,7 @@ research(Regexp *rp, char *str, int start, */ if (rp->dfa && ! no_bol && ! need_start) { char save; - int count = 0; + size_t count = 0; /* * dfa likes to stick a '\n' right after the matched * text. So we just save and restore the character. |