From 1bd1d810cd2a9607ea9795278055ccf6846ab442 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Mon, 15 Oct 2018 10:18:20 +0200 Subject: Fix platform error message when using invalid platform --- src/Conf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Conf.cpp') diff --git a/src/Conf.cpp b/src/Conf.cpp index 0307bc0..a204f13 100644 --- a/src/Conf.cpp +++ b/src/Conf.cpp @@ -684,7 +684,7 @@ namespace sibs result += " or "; else if(i > 0) result += ", "; - result += it.second; + result += string(it.first.data, it.first.size); ++i; } return result; -- cgit v1.2.3