From f3f3d49bfa26ddc4f2d32e3264b24ad806ff71cb Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Mon, 25 Dec 2023 00:22:12 +0300 Subject: [PATCH] template.c: reformat (omit curly brackets) --- src/template.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/template.c b/src/template.c index 20804cb..1e0d17c 100644 --- a/src/template.c +++ b/src/template.c @@ -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(" + ");