diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-04-27 22:51:54 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-04-27 22:51:54 +0300 |
commit | 04746bc5c0301fac55badc956225f486607dffd9 (patch) | |
tree | bcf5a6644265574c59d2f47129009770ed4bab59 /io.c | |
parent | 9e2c7a30a0dfa4f50ea4c052d18f9a923bb51b87 (diff) | |
download | egawk-04746bc5c0301fac55badc956225f486607dffd9.tar.gz egawk-04746bc5c0301fac55badc956225f486607dffd9.tar.bz2 egawk-04746bc5c0301fac55badc956225f486607dffd9.zip |
Code cleanups in array.c and side effects in other files.
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -525,7 +525,7 @@ iop_close(IOBUF *iop) iop->buf = NULL; } if ((iop->flag & IOP_NOFREE_OBJ) == 0) - efree((char *) iop); + efree(iop); return ret == -1 ? 1 : 0; } |