diff options
Diffstat (limited to 'src/tafwriter.cpp')
-rw-r--r-- | src/tafwriter.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tafwriter.cpp b/src/tafwriter.cpp index b0f5def..82d39e5 100644 --- a/src/tafwriter.cpp +++ b/src/tafwriter.cpp | |||
@@ -104,7 +104,10 @@ void Bu::TafWriter::writeString( const Bu::FString &str ) | |||
104 | sOut.write(buf, 4 ); | 104 | sOut.write(buf, 4 ); |
105 | } | 105 | } |
106 | else | 106 | else |
107 | sOut.write( s, 1 ); | 107 | { |
108 | const char buf = *s; | ||
109 | sOut.write( &buf, 1 ); | ||
110 | } | ||
108 | } | 111 | } |
109 | sOut.write("\"", 1 ); | 112 | sOut.write("\"", 1 ); |
110 | } | 113 | } |