summaryrefslogtreecommitdiff
path: root/authenc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'authenc.cpp')
-rw-r--r--authenc.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/authenc.cpp b/authenc.cpp
index 0ed9cd14..bb6cf2c0 100644
--- a/authenc.cpp
+++ b/authenc.cpp
@@ -74,8 +74,7 @@ void AuthenticatedSymmetricCipherBase::Resynchronize(const byte *iv, int length)
void AuthenticatedSymmetricCipherBase::Update(const byte *input, size_t length)
{
- if (length == 0)
- return;
+ if (length == 0) {return;}
switch (m_state)
{