From 786480850ac3d16c62ee2abfe410c4e00d16f70b Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 3 May 2017 20:47:15 +0300 Subject: code style --- utils/decrypt_file.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils/decrypt_file.cpp') diff --git a/utils/decrypt_file.cpp b/utils/decrypt_file.cpp index 3bbbb06..75f8fb8 100644 --- a/utils/decrypt_file.cpp +++ b/utils/decrypt_file.cpp @@ -43,13 +43,13 @@ namespace { aes::Box::Block iv; aes::Box::parse_block(iv, algorithm, settings.get_iv_string()); - aes::Box box{ algorithm, key, mode, iv }; + aes::Box box{algorithm, key, mode, iv}; decrypt_file(box, ciphertext_path, plaintext_path); } else { - aes::Box box{ algorithm, key }; + aes::Box box{algorithm, key}; decrypt_file(box, ciphertext_path, plaintext_path); } } -- cgit v1.2.3