diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gpg-check-pattern.c | 2 | ||||
-rw-r--r-- | tools/gpgconf.c | 3 | ||||
-rw-r--r-- | tools/gpgsplit.c | 4 | ||||
-rw-r--r-- | tools/symcryptrun.c | 2 |
4 files changed, 7 insertions, 4 deletions
diff --git a/tools/gpg-check-pattern.c b/tools/gpg-check-pattern.c index 719734090..4db8f3706 100644 --- a/tools/gpg-check-pattern.c +++ b/tools/gpg-check-pattern.c @@ -74,7 +74,7 @@ static ARGPARSE_OPTS opts[] = { { oCheck, "check", 0, "run only a syntax check on the patternfile" }, { oNull, "null", 0, "input is expected to be null delimited" }, - {0} + ARGPARSE_end () }; diff --git a/tools/gpgconf.c b/tools/gpgconf.c index 223655567..fefa2ff8a 100644 --- a/tools/gpgconf.c +++ b/tools/gpgconf.c @@ -105,7 +105,8 @@ static ARGPARSE_OPTS opts[] = { oBuilddir, "build-prefix", 2, "@" }, { oNull, "null", 0, "@" }, { oNoVerbose, "no-verbose", 0, "@"}, - {0} + + ARGPARSE_end(), }; diff --git a/tools/gpgsplit.c b/tools/gpgsplit.c index b9787b182..674be6271 100644 --- a/tools/gpgsplit.c +++ b/tools/gpgsplit.c @@ -75,7 +75,9 @@ static ARGPARSE_OPTS opts[] = { { oUncompress, "uncompress", 0, "uncompress a packet"}, { oSecretToPublic, "secret-to-public", 0, "convert secret keys to public keys"}, { oNoSplit, "no-split", 0, "write to stdout and don't actually split"}, -{0} }; + + ARGPARSE_end () +}; static const char * diff --git a/tools/symcryptrun.c b/tools/symcryptrun.c index 54976cae5..c5780fdf5 100644 --- a/tools/symcryptrun.c +++ b/tools/symcryptrun.c @@ -185,7 +185,7 @@ static ARGPARSE_OPTS opts[] = { oHomedir, "homedir", 2, "@" }, { oNoOptions, "no-options", 0, "@" },/* shortcut for --options /dev/null */ - {0} + ARGPARSE_end () }; |