aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2011-04-27 22:51:54 +0300
committerArnold D. Robbins <arnold@skeeve.com>2011-04-27 22:51:54 +0300
commit04746bc5c0301fac55badc956225f486607dffd9 (patch)
treebcf5a6644265574c59d2f47129009770ed4bab59 /io.c
parent9e2c7a30a0dfa4f50ea4c052d18f9a923bb51b87 (diff)
downloadegawk-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index a4ed1e77..b5459688 100644
--- a/io.c
+++ b/io.c
@@ -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;
}