diff options
Diffstat (limited to 'c/pl.cpp')
-rw-r--r-- | c/pl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -94,7 +94,7 @@ wstring_owner PlString(const term_t t, const int flags) { char* s; if (PL_get_chars(t, &s, flags)) - return {WsoFromSz(s)}; + return {wstring_owner::from_narrow(s)}; else return {}; } |