diff options
Diffstat (limited to 'source/core/slang-writer.cpp')
| -rw-r--r-- | source/core/slang-writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/slang-writer.cpp b/source/core/slang-writer.cpp index 2b00b5853..74a39f871 100644 --- a/source/core/slang-writer.cpp +++ b/source/core/slang-writer.cpp @@ -210,7 +210,7 @@ SlangResult StringWriter::write(const char* chars, size_t numChars) { if (numChars > 0) { - m_builder->Append(chars, numChars); + m_builder->append(chars, numChars); } return SLANG_OK; } |
