fix rounding error
SVN-Revision: 1058
This commit is contained in:
parent
8a68de75e8
commit
ce095ae248
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ int main(int argc, char **argv)
|
|||
printf("Partition already moved outside trx\n");
|
||||
} else {
|
||||
init_crc32();
|
||||
ptr->offsets[2] += mtdInfo.erasesize;
|
||||
ptr->offsets[2] += (mtdInfo.erasesize - 1);
|
||||
ptr->offsets[2] &= ~(mtdInfo.erasesize - 1);
|
||||
ptr->len = ptr->offsets[2];
|
||||
ptr->crc32 = crc32buf((void *) &(ptr->flag_version), ptr->len - offsetof(struct trx_header, flag_version));
|
||||
|
|
Loading…
Reference in a new issue