diff options
| author | Juli Mallett <jmallett@FreeBSD.org> | 2002-10-23 23:16:43 +0000 |
|---|---|---|
| committer | Juli Mallett <jmallett@FreeBSD.org> | 2002-10-23 23:16:43 +0000 |
| commit | cbfcb39874d97238abccb006b6acf2b2f78b2e65 (patch) | |
| tree | bbd5e7ccf4fc366bc27a8cad8364cb37e593aa28 /usr.bin/make/str.c | |
| parent | 97490f4b3c85d61c156198a4ed31fefc6d41fe24 (diff) | |
Notes
Diffstat (limited to 'usr.bin/make/str.c')
| -rw-r--r-- | usr.bin/make/str.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/str.c b/usr.bin/make/str.c index af5a23930bcf..56cb71fd0dde 100644 --- a/usr.bin/make/str.c +++ b/usr.bin/make/str.c @@ -115,8 +115,8 @@ str_concat(char *s1, char *s2, int flags) /* free original strings */ if (flags & STR_DOFREE) { - (void)efree(s1); - (void)efree(s2); + (void)free(s1); + (void)free(s2); } return(result); } |
