template.c: ceil division result when finding minimum byte amount
This commit is contained in:
parent
c6d6759ffc
commit
43e4b6f6a9
@ -204,7 +204,8 @@ main(void)
|
|||||||
if (BLOCK_SIZE < 1) {
|
if (BLOCK_SIZE < 1) {
|
||||||
printf("The block size %" PRIuMAX " is too small, should be at least "
|
printf("The block size %" PRIuMAX " is too small, should be at least "
|
||||||
"%" PRIuMAX " bytes\n", (uintmax_t) BLOCK_SIZE_BYTES,
|
"%" PRIuMAX " bytes\n", (uintmax_t) BLOCK_SIZE_BYTES,
|
||||||
(uintmax_t) (sizeof(SAMPLE_TYPE) / sizeof(uint8_t)));
|
(uintmax_t) ((sizeof(SAMPLE_TYPE) + sizeof(uint8_t) - 1) /
|
||||||
|
sizeof(uint8_t)));
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user