aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli/pubkey.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-03-27 19:43:13 -0400
committerJack Lloyd <[email protected]>2019-03-27 19:43:13 -0400
commit07dd5c11a7893852f8b08e136da31a9aaa66f1ea (patch)
tree5824d89fc34a051d024e9eb27f5467c1e9a4f2d6 /src/cli/pubkey.cpp
parent87fb7334de6a0f4b8f990e53545c5a46478b0f59 (diff)
Fix some extra semicolons
Diffstat (limited to 'src/cli/pubkey.cpp')
-rw-r--r--src/cli/pubkey.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/pubkey.cpp b/src/cli/pubkey.cpp
index 9567c9e0b..51224cd1b 100644
--- a/src/cli/pubkey.cpp
+++ b/src/cli/pubkey.cpp
@@ -191,7 +191,7 @@ class PK_Sign final : public Command
const std::string passphrase = get_passphrase_arg("Passphrase for " + key_file, "passphrase");
Botan::DataSource_Stream input(key_file);
- std::unique_ptr<Botan::Private_Key> key = Botan::PKCS8::load_key(input, passphrase);;
+ std::unique_ptr<Botan::Private_Key> key = Botan::PKCS8::load_key(input, passphrase);
if(!key)
{