diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2009-08-21 05:27:58 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2009-08-21 05:27:58 +0000 |
commit | 7c9f056c1fe55e9705abcd569b69116b8a588a06 (patch) | |
tree | 6c6a22c48312232cd76f8d775726751109290f78 | |
parent | 88e52df9d34675e2db3be82a048fdfb505a132ac (diff) |
remove the ``;'' at the end of INDENT() macro definition using
the ``do { ... } while (0)'' construct.
ok henning, from Frederic Culuot <frederic _at_ culot.org>
-rw-r--r-- | sbin/pfctl/pfctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c index 410bc6b0f80..ef0d04a2f4b 100644 --- a/sbin/pfctl/pfctl.c +++ b/sbin/pfctl/pfctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl.c,v 1.283 2009/07/09 23:52:25 henning Exp $ */ +/* $OpenBSD: pfctl.c,v 1.284 2009/08/21 05:27:57 ratchov Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -128,7 +128,7 @@ int labels = 0; for (i=0; i < d; i++) \ printf(" "); \ } \ - } while (0); \ + } while (0) \ static const struct { |