mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-20 22:30:30 +01:00
[apps] Replace sizeInBits>>2 sizeInBits/sizeof(uint32_t) in checksums
Change-Id: I4f96514caa4552d2158bb9ebdc328a6453554934
This commit is contained in:
@@ -17,7 +17,7 @@ uint32_t SequenceStore::storeChecksum() {
|
||||
for (int i = 0; i < k_maxNumberOfSequences; i++) {
|
||||
checksums[i] = m_sequences[i].checksum();
|
||||
}
|
||||
return Ion::crc32((uint32_t *)checksums, dataLengthInBytes>>2);
|
||||
return Ion::crc32((uint32_t *)checksums, dataLengthInBytes/sizeof(uint32_t));
|
||||
}
|
||||
|
||||
Sequence * SequenceStore::functionAtIndex(int i) {
|
||||
|
||||
Reference in New Issue
Block a user