From 76c311c44ab684dca1ac0834f3afe40188ef8812 Mon Sep 17 00:00:00 2001 From: Marcus Haehnel Date: Tue, 20 Feb 2024 09:39:28 +0100 Subject: Remove duplicate semicolons While they are not a problem per-se they cause issues with some tooling (such as clang coverage) and are confusing to the reader. --- libc/misc/time/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/misc') diff --git a/libc/misc/time/time.c b/libc/misc/time/time.c index cd189169a..0f7c6a33f 100644 --- a/libc/misc/time/time.c +++ b/libc/misc/time/time.c @@ -1311,7 +1311,7 @@ ISO_LOOP: j = (i & 128) ? 100: 12; if (i & 64) { - field_val /= j;; + field_val /= j; } if (i & 32) { field_val %= j; -- cgit v1.2.3