summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-02-27 01:46:27 +0100
committerStanislaw Halik <sthalik@misaki.pl>2023-02-27 01:46:27 +0100
commitd2f67e7fb0b0729cd09e1a3193f729cdc755f83c (patch)
tree54d9c64c015a3396c3f82ffd738c795b3e280885
parenta93d597ca768fa809a0c5a8ffd8ab156990b2e73 (diff)
loader: use Debug::nospace properly
-rw-r--r--loader/filesystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/filesystem.cpp b/loader/filesystem.cpp
index f3a72365..b86915d4 100644
--- a/loader/filesystem.cpp
+++ b/loader/filesystem.cpp
@@ -32,7 +32,7 @@ bool loader_impl::chdir(StringView pathname)
if (ret)
{
Error err;
- err << "chdir: can't change directory to" << pathname << Error::nospace << ": ";
+ err << "chdir: can't change directory to" << pathname << Error::nospace << ":";
Corrade::Utility::Implementation::printErrnoErrorString(err, errno);
}
return !ret;