diff options
author | Werner Koch <[email protected]> | 2017-08-01 06:28:01 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2017-08-01 06:28:01 +0000 |
commit | a21ca77988cee6987c4aca91a8e1c3ffd5c32c10 (patch) | |
tree | 242db826e156426b5fa8c0080269de74aca26174 /common/argparse.c | |
parent | Simple typo fix. (diff) | |
download | gnupg-a21ca77988cee6987c4aca91a8e1c3ffd5c32c10.tar.gz gnupg-a21ca77988cee6987c4aca91a8e1c3ffd5c32c10.zip |
indent: Wrap overlong lines in argparse.c
--
Diffstat (limited to '')
-rw-r--r-- | common/argparse.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/common/argparse.c b/common/argparse.c index 590e6e944..f5e4ceb9d 100644 --- a/common/argparse.c +++ b/common/argparse.c @@ -918,11 +918,16 @@ arg_parse( ARGPARSE_ARGS *arg, ARGPARSE_OPTS *opts) char *s, *s2; int i; - /* Fill in missing standard options: help, version, warranty and dump-options. */ - ARGPARSE_OPTS help_opt = ARGPARSE_s_n(ARGPARSE_SHORTOPT_HELP, "help", "@"); - ARGPARSE_OPTS version_opt = ARGPARSE_s_n(ARGPARSE_SHORTOPT_VERSION, "version", "@"); - ARGPARSE_OPTS warranty_opt = ARGPARSE_s_n(ARGPARSE_SHORTOPT_WARRANTY, "warranty", "@"); - ARGPARSE_OPTS dump_options_opt = ARGPARSE_s_n(ARGPARSE_SHORTOPT_DUMP_OPTIONS, "dump-options", "@"); + /* Fill in missing standard options: help, version, warranty and + * dump-options. */ + ARGPARSE_OPTS help_opt + = ARGPARSE_s_n (ARGPARSE_SHORTOPT_HELP, "help", "@"); + ARGPARSE_OPTS version_opt + = ARGPARSE_s_n (ARGPARSE_SHORTOPT_VERSION, "version", "@"); + ARGPARSE_OPTS warranty_opt + = ARGPARSE_s_n (ARGPARSE_SHORTOPT_WARRANTY, "warranty", "@"); + ARGPARSE_OPTS dump_options_opt + = ARGPARSE_s_n(ARGPARSE_SHORTOPT_DUMP_OPTIONS, "dump-options", "@"); int seen_help = 0; int seen_version = 0; int seen_warranty = 0; |