diff options
author | emaste <emaste@FreeBSD.org> | 2010-07-12 17:18:58 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2010-07-12 17:18:58 +0000 |
commit | 84bb346ef854d7aea4c8bf88cc16c8948baa1b58 (patch) | |
tree | 1cc90d988d6d4a9a9dc3ee9dfa39d1b4806753b2 /usr.bin/make/str.c | |
parent | db5b9949a326486606cc71bc42c2aa8ab2026677 (diff) | |
download | FreeBSD-src-84bb346ef854d7aea4c8bf88cc16c8948baa1b58.zip FreeBSD-src-84bb346ef854d7aea4c8bf88cc16c8948baa1b58.tar.gz |
Remove extraneous ;
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 44ba79d..286eac5 100644 --- a/usr.bin/make/str.c +++ b/usr.bin/make/str.c @@ -150,7 +150,7 @@ brk_string(ArgArray *aa, const char str[], Boolean expand) ArgArray_Init(aa); - aa->buffer = estrdup(str);; + aa->buffer = estrdup(str); arg = aa->buffer; start = arg; |