From 00d0f81bd952917e93fa977c1b991728f4aa2805 Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Wed, 1 Jun 2022 15:28:17 +0200 Subject: [PATCH] Fix compiler warning on macos --- GCryptCLI/src/DataIngestionLayer.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/GCryptCLI/src/DataIngestionLayer.cpp b/GCryptCLI/src/DataIngestionLayer.cpp index 96c1991..af6bfa7 100644 --- a/GCryptCLI/src/DataIngestionLayer.cpp +++ b/GCryptCLI/src/DataIngestionLayer.cpp @@ -57,9 +57,7 @@ void DataIngestionLayer::Init() { } // Derive from our the current module if we're reading ciphertext or not - if ( - (Configuration::activeModule == Configuration::MODULE::DECRYPTION) - ) { + if (Configuration::activeModule == Configuration::MODULE::DECRYPTION) { isReadingCiphertext = true; } else {