diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-04-29 22:57:06 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-04-29 22:57:06 +0000 |
commit | b5c67a4e6ea09b06ef44f6f9f4036ff2262e4bda (patch) | |
tree | 76c15ebd30a1c46926541214dc8f1191c21a7ef4 /sbin/disklabel/editor.c | |
parent | e931c9a66ee4198928bc60a583720808d84a0b94 (diff) |
KNF
Diffstat (limited to 'sbin/disklabel/editor.c')
-rw-r--r-- | sbin/disklabel/editor.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c index b374b1f10d3..cd878af13e2 100644 --- a/sbin/disklabel/editor.c +++ b/sbin/disklabel/editor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: editor.c,v 1.199 2009/04/29 15:11:20 otto Exp $ */ +/* $OpenBSD: editor.c,v 1.200 2009/04/29 22:57:05 deraadt Exp $ */ /* * Copyright (c) 1997-2000 Todd C. Miller <Todd.Miller@courtesan.com> @@ -17,7 +17,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: editor.c,v 1.199 2009/04/29 15:11:20 otto Exp $"; +static char rcsid[] = "$OpenBSD: editor.c,v 1.200 2009/04/29 22:57:05 deraadt Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -104,7 +104,10 @@ const struct space_allocation alloc_stupid[] = { { MEG(1), MEG(2048), 100, "/" } }; -const struct { const struct space_allocation *table; int sz; } alloc_table[] = { +const struct { + const struct space_allocation *table; + int sz; +} alloc_table[] = { { alloc_big, nitems(alloc_big) }, { alloc_medium, nitems(alloc_medium) }, { alloc_small, nitems(alloc_small) }, |