aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-03-05 20:21:10 +0200
committerArnold D. Robbins <arnold@skeeve.com>2018-03-05 20:21:10 +0200
commit60c5e72ad30f6c2108574f8c072a386302bc0f51 (patch)
tree69065edd511777bb788bc214a3a562d1ecfa953b /io.c
parenta0753d1e2b362e9e6b4ea35ff6135505758521f6 (diff)
parent7b77ec860377eafcad05025888721a46b8a7f349 (diff)
downloadegawk-60c5e72ad30f6c2108574f8c072a386302bc0f51.tar.gz
egawk-60c5e72ad30f6c2108574f8c072a386302bc0f51.tar.bz2
egawk-60c5e72ad30f6c2108574f8c072a386302bc0f51.zip
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'io.c')
-rw-r--r--io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io.c b/io.c
index 1a1d8cc2..9ca29dac 100644
--- a/io.c
+++ b/io.c
@@ -3535,12 +3535,12 @@ rs1scan(IOBUF *iop, struct recmatch *recm, SCANSTATE *state)
/* Thus, the check for \n here; big speedup ! */
if (rs != '\n' && gawk_mb_cur_max > 1) {
int len = iop->dataend - bp;
- int found = 0;
+ bool found = false;
memset(& mbs, 0, sizeof(mbstate_t));
do {
if (*bp == rs)
- found = 1;
+ found = true;
if (is_valid_character(*bp))
mbclen = 1;
else