summaryrefslogtreecommitdiff
path: root/unix/syslinux.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-02-08 09:58:24 -0800
committerH. Peter Anvin <hpa@zytor.com>2007-02-08 09:58:24 -0800
commit66c93239098f35ec731cbafc9017537d4c5e0c1b (patch)
treecb79d41bb67401427ebb5642382904c62a62a27f /unix/syslinux.c
parent0264d03fc1ac26b65ee4c28b136d88794cb88214 (diff)
parentb1e23e244b881b17b278dc54bacffb6b462a1e2d (diff)
downloadsyslinux-3.36-pre7.tar.gz
Merge with git+ssh://master.kernel.org/pub/scm/boot/syslinux/syslinux.git#syslinux-3.3xsyslinux-3.36-pre7
Diffstat (limited to 'unix/syslinux.c')
-rw-r--r--unix/syslinux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/syslinux.c b/unix/syslinux.c
index aa6a0037..4270d728 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();
}