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. --- ldso/include/dl-string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ldso') diff --git a/ldso/include/dl-string.h b/ldso/include/dl-string.h index 6cc76dbf9..4a66161e0 100644 --- a/ldso/include/dl-string.h +++ b/ldso/include/dl-string.h @@ -103,7 +103,7 @@ static __always_inline char * _dl_strstr(const char *s1, const char *s2) do { if (!*p) - return (char *) s1;; + return (char *) s1; if (*p == *s) { ++p; ++s; -- cgit v1.2.3