diff options
author | imp <imp@FreeBSD.org> | 2006-08-17 23:00:33 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2006-08-17 23:00:33 +0000 |
commit | 5c08c82362658b019c44289a1c1a24a804bd8bcc (patch) | |
tree | 41b2ba490bd4c9db7f7de307fc967838e6f953b7 /bin | |
parent | db85f415fa8cd00a377c51e17e5449cbbfe54f2d (diff) | |
download | FreeBSD-src-5c08c82362658b019c44289a1c1a24a804bd8bcc.zip FreeBSD-src-5c08c82362658b019c44289a1c1a24a804bd8bcc.tar.gz |
while(0); -> while (0) in multiline macro
Diffstat (limited to 'bin')
-rw-r--r-- | bin/ed/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ed/main.c b/bin/ed/main.c index 807a3cc..2273c95 100644 --- a/bin/ed/main.c +++ b/bin/ed/main.c @@ -292,7 +292,7 @@ extract_addr_range(void) errmsg = "invalid address"; \ return ERR; \ } \ -} while (0); +} while (0) /* next_addr: return the next line address in the command buffer */ long |