summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-02-01 11:15:46 -0800
committerH. Peter Anvin <hpa@zytor.com>2007-02-01 11:15:46 -0800
commitf0a76c9a7eda891aca9a87a28179e51baffffd11 (patch)
treeaa815f4d079e06be56b1f9ff2b84c6ebe73a8abc
parent5528fab0fd41e81e9b876f1bd7ebeb94b30b896c (diff)
downloadsyslinux-f0a76c9a7eda891aca9a87a28179e51baffffd11.tar.gz
Formatting cleanup
-rw-r--r--unix/syslinux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/syslinux.c b/unix/syslinux.c
index d31e01f3..8b5a4cf6 100644
--- a/unix/syslinux.c
+++ b/unix/syslinux.c
@@ -354,7 +354,8 @@ int main(int argc, char *argv[])
} else if ( *opt == 'd' && argp[1] ) {
subdir = *++argp;
} else if ( *opt == 'o' && argp[1] ) {
- filesystem_offset = (off_t)strtoull(*++argp, NULL, 0); /* Byte offset */
+ /* Byte offset */
+ filesystem_offset = (off_t)strtoull(*++argp, NULL, 0);
} else {
usage();
}