summaryrefslogtreecommitdiffstats
path: root/sord
diff options
context:
space:
mode:
Diffstat (limited to 'sord')
-rw-r--r--sord/sordmm.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sord/sordmm.hpp b/sord/sordmm.hpp
index af2a064..78fc14c 100644
--- a/sord/sordmm.hpp
+++ b/sord/sordmm.hpp
@@ -75,7 +75,7 @@ public:
SerdChunk suffix;
if (serd_env_qualify(_c_obj, &uri_node, &prefix, &suffix)) {
std::string ret((const char*)prefix.buf, prefix.n_bytes - 1);
- ret.append((const char*)suffix.buf, suffix.len);
+ ret.append(":").append((const char*)suffix.buf, suffix.len);
return ret;
}
return uri;