summaryrefslogtreecommitdiffstats
path: root/tapset/string.stp
diff options
context:
space:
mode:
Diffstat (limited to 'tapset/string.stp')
-rw-r--r--tapset/string.stp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tapset/string.stp b/tapset/string.stp
index a4cff3e4..28f8e2dc 100644
--- a/tapset/string.stp
+++ b/tapset/string.stp
@@ -55,12 +55,12 @@ function isinstr:long(s1:string,s2:string) %{ /* pure */
*/
function text_str:string(input:string)
%{ /* pure */
- _stp_text_str(THIS->__retvalue, THIS->input, 0, 0);
+ _stp_text_str(THIS->__retvalue, THIS->input, 0, 0, 0);
%}
function text_strn:string(input:string, len:long, quoted:long)
%{ /* pure */
- _stp_text_str(THIS->__retvalue, THIS->input, THIS->len, THIS->quoted);
+ _stp_text_str(THIS->__retvalue, THIS->input, THIS->len, THIS->quoted, 0);
%}