summaryrefslogtreecommitdiff
path: root/usr.bin/make/str.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/make/str.c')
-rw-r--r--usr.bin/make/str.c4
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);
}