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. --- extra/locale/programs/locale.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extra/locale/programs') diff --git a/extra/locale/programs/locale.c b/extra/locale/programs/locale.c index 5d16d1276..4157c4a8e 100644 --- a/extra/locale/programs/locale.c +++ b/extra/locale/programs/locale.c @@ -231,7 +231,7 @@ static void find_locale_string(locale_entry * loc_rec, char *loc) *loc = '\0'; } else { dotcs = (uint16_t) loc_rec->dot_cs; - cs = (uint16_t) loc_rec->cs;; + cs = (uint16_t) loc_rec->cs; loc = strncpy(loc, GET_LOCALE_NAME(idx), 5); if (loc[2] == '_') { -- cgit v1.2.3