From 0449ac7ece43192686fc44088d41ac09d998cfbb Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Thu, 17 Dec 2015 10:37:39 -0800 Subject: [PATCH] Formatting adjustment. --- src/sha256.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sha256.cc b/src/sha256.cc index 645a2e0..8674dc7 100644 --- a/src/sha256.cc +++ b/src/sha256.cc @@ -220,7 +220,7 @@ SHA256::update(const uint8_t *m, uint32_t ml) if (nullptr == m) return EMSHA_NULLPTR; // If the SHA256 object is in a bad state, don't proceed. - if (EMSHA_ROK != this->hstatus) return this->hstatus; + if (EMSHA_ROK != this->hstatus) return this->hstatus; // If the hash has been finalised, don't proceed. if (0 != this->hcomplete) return EMSHA_INVALID_STATE;