aboutsummaryrefslogtreecommitdiffstats
path: root/extension/filefuncs.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-03-20 17:19:15 +0200
committerArnold D. Robbins <arnold@skeeve.com>2015-03-20 17:19:15 +0200
commita31a42403b841ef05ca9143a431c8b6f1021a958 (patch)
tree09668a5683a34d8fcc114c105a6148dd3b717b26 /extension/filefuncs.c
parent2473b938036dfdd32ff47833ea032a80a6fa5659 (diff)
parent480aca31c7772dafeb1b97cd7a768bca2f49d3c7 (diff)
downloadegawk-a31a42403b841ef05ca9143a431c8b6f1021a958.tar.gz
egawk-a31a42403b841ef05ca9143a431c8b6f1021a958.tar.bz2
egawk-a31a42403b841ef05ca9143a431c8b6f1021a958.zip
Merge branch 'master' into select
Diffstat (limited to 'extension/filefuncs.c')
-rw-r--r--extension/filefuncs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/filefuncs.c b/extension/filefuncs.c
index a20e9ff7..ddb1ecda 100644
--- a/extension/filefuncs.c
+++ b/extension/filefuncs.c
@@ -490,7 +490,7 @@ do_stat(int nargs, awk_value_t *result)
/* always empty out the array */
clear_array(array);
- /* stat the file, if error, set ERRNO and return */
+ /* stat the file; if error, set ERRNO and return */
ret = statfunc(name, & sbuf);
if (ret < 0) {
update_ERRNO_int(errno);