Match up write_data signatures

This commit is contained in:
Scott Lahteine
2019-08-02 10:32:51 -05:00
parent 2e27e3ba04
commit 18c9182903
6 changed files with 7 additions and 7 deletions

View File

@ -61,7 +61,7 @@ bool PersistentStore::access_finish() {
return true;
}
bool PersistentStore::write_data(int &pos, const uint8_t *value, const size_t size, uint16_t *crc) {
bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc) {
std::size_t bytes_written = 0;
for (std::size_t i = 0; i < size; i++) {