1
0

template.c: main: use return instead of exit()

This commit is contained in:
Intel A80486DX2-66 2024-04-14 16:05:07 +03:00
parent 102618a21a
commit c6d6759ffc
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -205,7 +205,7 @@ main(void)
printf("The block size %" PRIuMAX " is too small, should be at least "
"%" PRIuMAX " bytes\n", (uintmax_t) BLOCK_SIZE_BYTES,
(uintmax_t) (sizeof(SAMPLE_TYPE) / sizeof(uint8_t)));
exit(EXIT_FAILURE);
return EXIT_FAILURE;
}
const size_t MAX = (PRODUCT + (BLOCK_SIZE - 1)) / BLOCK_SIZE;