summaryrefslogtreecommitdiff
path: root/src/core/resource
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-02-18 00:09:05 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-02-18 00:09:05 +0100
commit05ed0f693c5b3f8d9cc9438da6e6ac16f8ea281c (patch)
tree44e32b06a9ffaf0b79bb6d86f0b69989db401a6c /src/core/resource
parentc59f9b95bbed7631038ea028f68f9ce7a82609b0 (diff)
Fix missing trailing space in error message
Diffstat (limited to 'src/core/resource')
-rw-r--r--src/core/resource/ResourceRequest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/resource/ResourceRequest.cpp b/src/core/resource/ResourceRequest.cpp
index 5e5bff3..f01a324 100644
--- a/src/core/resource/ResourceRequest.cpp
+++ b/src/core/resource/ResourceRequest.cpp
@@ -213,7 +213,7 @@ bool ResourceRequest::deduce(Registry &registry, Logger &logger)
// Autocompletion already tries to determine the file path, so
// if an empty list is returned, this means that the resource
// is explicitly not found
- logger.error(std::string("Resource not found:") + path);
+ logger.error(std::string("Resource not found: ") + path);
ok = false;
}
}
@@ -265,7 +265,7 @@ bool ResourceRequest::locate(Registry &registry, Logger &logger,
Resource &resource) const
{
if (!registry.locateResource(resource, path, resourceType, relativeTo)) {
- logger.error(std::string("Resource not found:") + path);
+ logger.error(std::string("Resource not found: ") + path);
return false;
}
return true;