diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-02-08 09:58:24 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-02-08 09:58:24 -0800 |
commit | 66c93239098f35ec731cbafc9017537d4c5e0c1b (patch) | |
tree | cb79d41bb67401427ebb5642382904c62a62a27f /unix/syslinux.c | |
parent | 0264d03fc1ac26b65ee4c28b136d88794cb88214 (diff) | |
parent | b1e23e244b881b17b278dc54bacffb6b462a1e2d (diff) | |
download | syslinux-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.c | 3 |
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(); } |