diff options
author | hunt <hunt> | 2006-07-11 20:38:35 +0000 |
---|---|---|
committer | hunt <hunt> | 2006-07-11 20:38:35 +0000 |
commit | 2c5335822bbbc0589ebe2a1815a295e6df2317c7 (patch) | |
tree | 6efd8a408ca46696a5da26f84411ae79ccd38627 /tapset/string.stp | |
parent | 6d66b0c445045e559c2b7eaf9a6931e24a90cc6a (diff) | |
download | systemtap-steved-2c5335822bbbc0589ebe2a1815a295e6df2317c7.tar.gz systemtap-steved-2c5335822bbbc0589ebe2a1815a295e6df2317c7.tar.xz systemtap-steved-2c5335822bbbc0589ebe2a1815a295e6df2317c7.zip |
*** empty log message ***
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); %} |