Formatting adjustment.

This commit is contained in:
Kyle Isom 2015-12-17 10:37:39 -08:00
parent 3303c50f98
commit 0449ac7ece
1 changed files with 1 additions and 1 deletions

View File

@ -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;