diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-02-11 23:21:28 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-02-11 23:21:28 +0200 |
commit | 2f49027b6d6b1f03ae07c5cd9625b072465079bd (patch) | |
tree | a166a8ff5a5db315891bef2bb184490d9fbe519f /extension/filefuncs.c | |
parent | 9478ffc5b7ae6988bb109a7be9189ed02f3720e8 (diff) | |
download | egawk-2f49027b6d6b1f03ae07c5cd9625b072465079bd.tar.gz egawk-2f49027b6d6b1f03ae07c5cd9625b072465079bd.tar.bz2 egawk-2f49027b6d6b1f03ae07c5cd9625b072465079bd.zip |
O'Reilly edits, through Chapter 16.
Diffstat (limited to 'extension/filefuncs.c')
-rw-r--r-- | extension/filefuncs.c | 2 |
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); |