diff options
author | hunt <hunt> | 2005-04-11 18:49:33 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-04-11 18:49:33 +0000 |
commit | ac902b1d1fa1444bd978334173738dd48afdcc5d (patch) | |
tree | 697ca741f92da7e2fe1d736aee8be58742611775 /runtime/string.c | |
parent | 156fc47f2e418fccb026674437855e65dd68476b (diff) | |
download | systemtap-steved-ac902b1d1fa1444bd978334173738dd48afdcc5d.tar.gz systemtap-steved-ac902b1d1fa1444bd978334173738dd48afdcc5d.tar.xz systemtap-steved-ac902b1d1fa1444bd978334173738dd48afdcc5d.zip |
i386 fixes.
Diffstat (limited to 'runtime/string.c')
-rw-r--r-- | runtime/string.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/string.c b/runtime/string.c index 1975b70c..b6432b76 100644 --- a/runtime/string.c +++ b/runtime/string.c @@ -151,10 +151,10 @@ char * _stp_string_ptr (String str) ({ \ if (__builtin_types_compatible_p (typeof (str2), char[])) { \ char *x = (char *)str2; \ - _str_string_cat_cstr(str1,x); \ + _stp_string_cat_cstr(str1,x); \ } else { \ String x = (String)str2; \ - _str_string_cat_string(str1,x); \ + _stp_string_cat_string(str1,x); \ } \ }) |