Skip to content

Commit

Permalink
Fix #338: missing return in eraseBlock32()
Browse files Browse the repository at this point in the history
  • Loading branch information
terrillmoore committed Jun 12, 2022
1 parent 63633b9 commit ae4be4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/stm32/Catena_Mx25v8035f.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ bool Catena_Mx25v8035f::eraseBlock32(
uint32_t Block32Address
)
{
this->erase(Block32Address, MX25V8035F_CMD_BE_32K, 100 /*ms*/);
return this->erase(Block32Address, MX25V8035F_CMD_BE_32K, 100 /*ms*/);
}

/*
Expand Down

0 comments on commit ae4be4b

Please sign in to comment.