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_bmp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils/decrypt_bmp.cpp') diff --git a/utils/decrypt_bmp.cpp b/utils/decrypt_bmp.cpp index 1d287d2..17a64dd 100644 --- a/utils/decrypt_bmp.cpp +++ b/utils/decrypt_bmp.cpp @@ -46,13 +46,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_bmp(box, ciphertext_path, plaintext_path); } else { - aes::Box box{ algorithm, key }; + aes::Box box{algorithm, key}; decrypt_bmp(box, ciphertext_path, plaintext_path); } } -- cgit v1.2.3