diff options
author | Simon Horman <horms@verge.net.au> | 2008-03-06 18:29:28 +0900 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2008-03-06 18:50:47 +0900 |
commit | 8cac3581e291c06834cf8cb7bfee8341f7da5eb2 (patch) | |
tree | dbf23d8869caea9b7182f06c026c9af394904fcc | |
parent | 26101e9dffd99144253fc42c85c13962cb955ecd (diff) |
kexec-tools: mipsel: Fit elf_mipsel_load() into 80 columns
Signed-off-by: Simon Horman <horms@verge.net.au>
-rw-r--r-- | kexec/arch/mipsel/kexec-elf-mipsel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kexec/arch/mipsel/kexec-elf-mipsel.c b/kexec/arch/mipsel/kexec-elf-mipsel.c index af1bb13..acd5f77 100644 --- a/kexec/arch/mipsel/kexec-elf-mipsel.c +++ b/kexec/arch/mipsel/kexec-elf-mipsel.c @@ -128,7 +128,8 @@ int elf_mipsel_load(int argc, char **argv, const char *buf, off_t len, static const char short_options[] = KEXEC_ARCH_OPT_STR "d"; command_line = 0; - while ((opt = getopt_long(argc, argv, short_options, options, 0)) != -1) { + while ((opt = getopt_long(argc, argv, short_options, + options, 0)) != -1) { switch (opt) { default: /* Ignore core options */ |