summaryrefslogtreecommitdiff
path: root/TextOutput.h
diff options
context:
space:
mode:
Diffstat (limited to 'TextOutput.h')
-rw-r--r--TextOutput.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/TextOutput.h b/TextOutput.h
index 9611ddb..ec4000b 100644
--- a/TextOutput.h
+++ b/TextOutput.h
@@ -137,7 +137,7 @@ inline TextOutput& operator<<(TextOutput& to, const bool &val)
inline TextOutput& operator<<(TextOutput& to, const String16& val)
{
- to << String8(val).string();
+ to << String8(val).c_str();
return to;
}