summaryrefslogtreecommitdiffstats
path: root/source/core/slang-process-util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/slang-process-util.cpp')
-rw-r--r--source/core/slang-process-util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/slang-process-util.cpp b/source/core/slang-process-util.cpp
index 1a160b00b..ef22c0392 100644
--- a/source/core/slang-process-util.cpp
+++ b/source/core/slang-process-util.cpp
@@ -28,7 +28,7 @@ static String _getText(const ConstArrayView<Byte>& bytes)
{
StringBuilder buf;
StringUtil::appendStandardLines(UnownedStringSlice((const char*)bytes.begin(), (const char*)bytes.end()), buf);
- return buf.ProduceString();
+ return buf.produceString();
}
/* static */SlangResult ProcessUtil::readUntilTermination(Process* process, ExecuteResult& outExecuteResult)