diff options
author | Xinchen Hui <laruence@gmail.com> | 2014-02-18 17:42:46 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2014-02-18 17:42:46 +0800 |
commit | 43b03c74b322d6ceb003a14a7561fdffc4e13072 (patch) | |
tree | e5cf8ec9939d559fc7f6aaedb89404d2312561cc /ext/standard/php_smart_str_public.h | |
parent | 1c4f3d39a805323dc60f2bc1bfc96e39d608ac37 (diff) | |
download | php-git-43b03c74b322d6ceb003a14a7561fdffc4e13072.tar.gz |
Refacting smart_str
Diffstat (limited to 'ext/standard/php_smart_str_public.h')
-rw-r--r-- | ext/standard/php_smart_str_public.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/standard/php_smart_str_public.h b/ext/standard/php_smart_str_public.h index b445dd7767..7ce299e442 100644 --- a/ext/standard/php_smart_str_public.h +++ b/ext/standard/php_smart_str_public.h @@ -24,8 +24,7 @@ #include <sys/types.h> typedef struct { - char *c; - size_t len; + zend_string *s; size_t a; } smart_str; |