template.c: use the same expression

This commit is contained in:
Intel A80486DX2-66 2024-01-10 18:19:26 +03:00
parent a034af9e7b
commit 96defbf730
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ main(void)
#endif
// 1. generate audio data
#if FP_RETURN_TYPE
long double bytebeat_res = floor(bytebeat((long double) floor(w)));
long double bytebeat_res = floor(bytebeat(floor((long double) w)));
#elif IS_SIGNED
intmax_t bytebeat_res = (intmax_t) bytebeat(floor((long double) w));
#else