diff options
Diffstat (limited to 'tapset/string.stp')
-rw-r--r-- | tapset/string.stp | 4 |
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); %} |