tabs -> spaces for consistency

This commit is contained in:
ryanriske 2014-07-20 11:38:52 -05:00
parent 4136e1b262
commit 5d39d5b7eb

View File

@ -13,9 +13,9 @@ use vars qw/ %opt /;
# Command line options processing
sub init() {
my $opts = 'hrdp';
getopts( "$opts", \%opt ) or usage();
usage() if $opt{h} or !($opt{r} or $opt{d} or $opt{p});
my $opts = 'hrdp';
getopts( "$opts", \%opt ) or usage();
usage() if $opt{h} or !($opt{r} or $opt{d} or $opt{p});
}
sub usage() {
@ -103,4 +103,4 @@ if (defined $pubkey) {
print output_hex($pubkey) if $opt{d};
} else {
usage();
}
}