1
0
forked from fsfw/fsfw

size_t for DataPoolAdmin

This commit is contained in:
2020-07-03 15:50:29 +02:00
committed by Robin.Mueller
parent b86e5664c4
commit 9dcf0c7118
4 changed files with 10 additions and 10 deletions

View File

@ -121,7 +121,7 @@ uint8_t* PoolRawAccess::getEntry() {
}
ReturnValue_t PoolRawAccess::getEntryEndianSafe(uint8_t* buffer,
uint32_t* writtenBytes, uint32_t max_size) {
size_t* writtenBytes, size_t max_size) {
uint8_t* data_ptr = getEntry();
// debug << "PoolRawAccess::getEntry: Array position: " <<
// index * size_of_type << " Size of T: " << (int)size_of_type <<