summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2021-11-17 16:59:55 +0100
committerJoel Rosdahl <joel@rosdahl.net>2021-11-17 20:13:56 +0100
commit208798081a6baaaa316511b1ca19537cbcb64cdc (patch)
tree8daa2f17aaaebd3be386e076e87114b06c33d9db
parent6851ca2ead1e11fa8653d7529f2d9ff0e76a2c46 (diff)
downloadccache-208798081a6baaaa316511b1ca19537cbcb64cdc.tar.gz
fix: Remove extraneous space in log message
(cherry picked from commit 0d9131f26fb1e65add21666630a571c583b9516f)
-rw-r--r--src/storage/secondary/FileStorage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/storage/secondary/FileStorage.cpp b/src/storage/secondary/FileStorage.cpp
index 7312c62a..c824604c 100644
--- a/src/storage/secondary/FileStorage.cpp
+++ b/src/storage/secondary/FileStorage.cpp
@@ -70,7 +70,7 @@ FileStorageBackend::FileStorageBackend(const Params& params)
ASSERT(params.url.scheme() == "file");
if (!params.url.host().empty()) {
throw core::Fatal(FMT(
- "invalid file path \"{}\": specifying a host (\"{}\") is not supported",
+ "invalid file path \"{}\": specifying a host (\"{}\") is not supported",
params.url.str(),
params.url.host()));
}