summaryrefslogtreecommitdiff
path: root/ldso
diff options
context:
space:
mode:
authorMarcus Haehnel <marcus.haehnel@kernkonzept.com>2024-02-20 09:39:28 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2024-02-20 19:37:24 +0100
commit76c311c44ab684dca1ac0834f3afe40188ef8812 (patch)
treed402353ee21c9d4b7d69a35492eeadd352604c2c /ldso
parent8fa5437044b7ebc6971f987644d48507e0fbc5f9 (diff)
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.
Diffstat (limited to 'ldso')
-rw-r--r--ldso/include/dl-string.h2
1 files changed, 1 insertions, 1 deletions
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;