From 62b933b4402387379bd26a2d18ad3ded03fddfa4 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 28 Dec 2015 19:56:30 +0300 Subject: utils: code style --- utils/encrypt_file.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils/encrypt_file.cpp') diff --git a/utils/encrypt_file.cpp b/utils/encrypt_file.cpp index 4651928..bde7d83 100644 --- a/utils/encrypt_file.cpp +++ b/utils/encrypt_file.cpp @@ -73,8 +73,8 @@ namespace const auto algorithm = settings.get_algorithm(); const auto mode = settings.get_mode(); - const auto plaintext_path = settings.get_input_path(); - const auto ciphertext_path = settings.get_output_path(); + const auto& plaintext_path = settings.get_input_path(); + const auto& ciphertext_path = settings.get_output_path(); aesni::Box::Key key; aesni::Box::parse_key(key, algorithm, settings.get_key_string()); -- cgit v1.2.3