Fix some whitespace issues, and move a curly brace out of an #ifdef to
avoid confusing auto-indenting editors.
This commit is contained in:
parent
2c4abc3eb7
commit
266e79978a
@ -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++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user