Fix some whitespace issues, and move a curly brace out of an #ifdef to

avoid confusing auto-indenting editors.
This commit is contained in:
Dag-Erling Smørgrav 2004-08-08 23:11:43 +00:00
parent 2c4abc3eb7
commit 266e79978a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=133347

View File

@ -825,10 +825,11 @@ getasciilabel(FILE *f, struct disklabel *lp)
if (!strcmp(cp, "sectors/track")) {
v = strtoul(tp, NULL, 10);
#if (ULONG_MAX != 0xffffffffUL)
if (v == 0 || v > 0xffffffff) {
if (v == 0 || v > 0xffffffff)
#else
if (v == 0) {
if (v == 0)
#endif
{
fprintf(stderr, "line %d: %s: bad %s\n",
lineno, tp, cp);
errors++;