OpenPGP: remove unnecessary semicolons in openpgp-tool

- this is C, not a shell script
This commit is contained in:
Peter Marschall 2015-10-12 21:07:58 +02:00
parent 392bc08d86
commit 524ad56146
1 changed files with 2 additions and 2 deletions

View File

@ -277,11 +277,11 @@ static int decode_options(int argc, char **argv)
break;
case 'C':
opt_cardinfo++;
actions++;;
actions++;
break;
case 'U':
opt_userinfo++;
actions++;;
actions++;
break;
case 'G':
opt_genkey++;