Skip to content

Commit

Permalink
Fix return value
Browse files Browse the repository at this point in the history
  • Loading branch information
Alienmario committed Jun 9, 2024
1 parent 26c94eb commit 3a08cb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripting/include/srccoop/util/stringbuilder.inc
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ methodmap StringBuilder < DataPack
{
char[] szBuffer = new char[sb.BufferSize];
sb.ToString(szBuffer);
this.Append(szBuffer);
return this.Append(szBuffer);
}

/**
Expand Down

0 comments on commit 3a08cb0

Please sign in to comment.