aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2017-08-01 06:28:01 +0000
committerWerner Koch <[email protected]>2017-08-01 06:28:01 +0000
commita21ca77988cee6987c4aca91a8e1c3ffd5c32c10 (patch)
tree242db826e156426b5fa8c0080269de74aca26174
parentSimple typo fix. (diff)
downloadgnupg-a21ca77988cee6987c4aca91a8e1c3ffd5c32c10.tar.gz
gnupg-a21ca77988cee6987c4aca91a8e1c3ffd5c32c10.zip
indent: Wrap overlong lines in argparse.c
--
-rw-r--r--common/argparse.c15
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;