mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-13 16:31:09 +00:00
fix rounding error
SVN-Revision: 1058
This commit is contained in:
parent
8a68de75e8
commit
ce095ae248
@ -99,7 +99,7 @@ int main(int argc, char **argv)
|
|||||||
printf("Partition already moved outside trx\n");
|
printf("Partition already moved outside trx\n");
|
||||||
} else {
|
} else {
|
||||||
init_crc32();
|
init_crc32();
|
||||||
ptr->offsets[2] += mtdInfo.erasesize;
|
ptr->offsets[2] += (mtdInfo.erasesize - 1);
|
||||||
ptr->offsets[2] &= ~(mtdInfo.erasesize - 1);
|
ptr->offsets[2] &= ~(mtdInfo.erasesize - 1);
|
||||||
ptr->len = ptr->offsets[2];
|
ptr->len = ptr->offsets[2];
|
||||||
ptr->crc32 = crc32buf((void *) &(ptr->flag_version), ptr->len - offsetof(struct trx_header, flag_version));
|
ptr->crc32 = crc32buf((void *) &(ptr->flag_version), ptr->len - offsetof(struct trx_header, flag_version));
|
||||||
|
Loading…
Reference in New Issue
Block a user