1
0

template.c: reformat (omit curly brackets)

This commit is contained in:
Intel A80486DX2-66 2023-12-25 00:22:12 +03:00
parent da9b92c30b
commit f3f3d49bfa
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -90,7 +90,7 @@ main(void)
IS_SIGNED ? "" : "un",
BIT_DEPTH);
if (seconds > 0) {
if (seconds > 0)
if (seconds >= 3600)
printf(
"%" PRIuMAX ":%02" PRIuMAX ":%02" PRIuMAX,
@ -101,7 +101,6 @@ main(void)
printf("%" PRIuMAX ":%02" PRIuMAX, seconds / 60, seconds % 60);
else
printf("%" PRIuMAX " seconds", seconds);
}
if (seconds > 0 && samples > 0)
printf(" + ");