diff options
author | will <will@FreeBSD.org> | 2000-12-02 20:24:42 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-12-02 20:24:42 +0000 |
commit | 65a98afaedffb34df44fe7938b9f87f8dbce1cd6 (patch) | |
tree | 9dcfaa566f6b1b0fd7a3947c238332a19dd073c2 /usr.bin/make/str.c | |
parent | 33a20c676da04b4c787eef9bd8f8ef901c319fee (diff) | |
download | FreeBSD-src-65a98afaedffb34df44fe7938b9f87f8dbce1cd6.zip FreeBSD-src-65a98afaedffb34df44fe7938b9f87f8dbce1cd6.tar.gz |
There's also no point in #typedef'ing void/char pointers. Accordingly,
rip out ClientData/Address pointers and use standard types.
Obtained from: OpenBSD
Diffstat (limited to 'usr.bin/make/str.c')
-rw-r--r-- | usr.bin/make/str.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/str.c b/usr.bin/make/str.c index 3f8c104..8a60a26 100644 --- a/usr.bin/make/str.c +++ b/usr.bin/make/str.c @@ -73,7 +73,7 @@ str_end() if (argv) { if (argv[0]) free(argv[0]); - free((Address) argv); + free(argv); } if (buffer) free(buffer); |