1
0

template.c: fix MAX calculation

This commit is contained in:
Intel A80486DX2-66 2024-05-19 13:21:09 +03:00
parent 3217ac0763
commit 7efc6b77f5
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -226,7 +226,7 @@ main(void)
return EXIT_FAILURE;
}
const size_t MAX = (PRODUCT + (BLOCK_SIZE - 1)) / BLOCK_SIZE;
const size_t MAX = (GEN_LENGTH + (BLOCK_SIZE - 1)) / BLOCK_SIZE;
#endif
// * allocate heap for sample data