1
0

template.c: clarify the order of operations

This commit is contained in:
Intel A80486DX2-66 2024-01-09 16:38:30 +03:00
parent 51236ab9c3
commit 14ed1d976a
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -151,7 +151,7 @@ main(void)
"%sremaining samples = %18" PRIuMAX " (%.2Lf%% done)",
ANSI_CLEAR,
PRODUCT - w - 1,
(long double) w * 100 / (long double) PRODUCT);
((long double) w * 100) / (long double) PRODUCT);
fflush(stdout);
}
#endif