From 74af43ee9151fa71345f0dc980527fa2ece14728 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 6 Jun 2025 20:03:33 +0200 Subject: [PATCH] Remove superfluous semicolon Co-authored-by: Cole Helbling --- src/libfetchers/fetchers.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libfetchers/fetchers.cc b/src/libfetchers/fetchers.cc index 9beef69f0..5764f310d 100644 --- a/src/libfetchers/fetchers.cc +++ b/src/libfetchers/fetchers.cc @@ -305,7 +305,7 @@ struct SubstitutedSourceAccessor : ForwardingSourceAccessor std::string showPath(const CanonPath & path) override { - return displayPrefix + path.abs() + displaySuffix;; + return displayPrefix + path.abs() + displaySuffix; } };