summaryrefslogtreecommitdiffstats
path: root/usr.bin/make/targ.c
diff options
context:
space:
mode:
authorjmallett <jmallett@FreeBSD.org>2002-10-23 23:16:43 +0000
committerjmallett <jmallett@FreeBSD.org>2002-10-23 23:16:43 +0000
commit435bfdfa4436731362eb9fac66643198e6e238e4 (patch)
treebbd5e7ccf4fc366bc27a8cad8364cb37e593aa28 /usr.bin/make/targ.c
parentd98de7a2cf71a2e2d7fa1681696f9e0784cf85a5 (diff)
downloadFreeBSD-src-435bfdfa4436731362eb9fac66643198e6e238e4.zip
FreeBSD-src-435bfdfa4436731362eb9fac66643198e6e238e4.tar.gz
Remove efree(), it isn't used consistently enough to even pretend that it
might help on the systems it could possibly be used as a bandaid for. In fact, the only thing it's useful for is instrumenting free(3) calls, and in that capacity, it's better served as a local patch, than a public wrapper.
Diffstat (limited to 'usr.bin/make/targ.c')
-rw-r--r--usr.bin/make/targ.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/targ.c b/usr.bin/make/targ.c
index 2d0f1c3..ca8a718 100644
--- a/usr.bin/make/targ.c
+++ b/usr.bin/make/targ.c
@@ -207,7 +207,7 @@ TargFreeGN (void *gnp)
free(gn->name);
- efree(gn->path);
+ free(gn->path);
Lst_Destroy(gn->iParents, NOFREE);
Lst_Destroy(gn->cohorts, NOFREE);
OpenPOWER on IntegriCloud