aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2014-07-03 18:17:05 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2014-07-03 18:17:05 +0000
commit68d1c6caf0fa23f7cbb40322bbeb16fa436e84e4 (patch)
treec160d096c9e20114a520d139ba507159ac003d07 /src
parent1ec6c29fcd22ee2fbf98e6d44b2ad40c7d2c1406 (diff)
downloadgdbm-68d1c6caf0fa23f7cbb40322bbeb16fa436e84e4.tar.gz
gdbm-68d1c6caf0fa23f7cbb40322bbeb16fa436e84e4.tar.bz2
Bugfix.
* src/lex.l (expand_char): Don't return any value.
Diffstat (limited to 'src')
-rw-r--r--src/lex.l3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lex.l b/src/lex.l
index abb9047..4fabb07 100644
--- a/src/lex.l
+++ b/src/lex.l
@@ -514,7 +514,8 @@ expand_char (int c)
{
if (p->cache)
free (p->cache);
- return p->fun (p);
+ p->fun (p);
+ return;
}
}
}

Return to:

Send suggestions and report system problems to the System administrator.