diff options
author | Andrey Hristov <andrey@php.net> | 2008-11-10 20:06:23 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2008-11-10 20:06:23 +0000 |
commit | abf612ba59c8c775a31ddf4e2597826b25fe7f86 (patch) | |
tree | e7f80328326a40e0c5965758c939fb96c8f8d9ec /ext/mysqli/mysqli_prop.c | |
parent | 757087553bd28b082f672b96d723495e3beccc1b (diff) | |
download | php-git-abf612ba59c8c775a31ddf4e2597826b25fe7f86.tar.gz |
MFH: Remove unneeded cast
Diffstat (limited to 'ext/mysqli/mysqli_prop.c')
-rw-r--r-- | ext/mysqli/mysqli_prop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/mysqli_prop.c b/ext/mysqli/mysqli_prop.c index f653545ecb..2b85a2a58a 100644 --- a/ext/mysqli/mysqli_prop.c +++ b/ext/mysqli/mysqli_prop.c @@ -86,7 +86,7 @@ static int __func(mysqli_object *obj, zval **retval TSRMLS_DC) \ ZVAL_LONG(*retval, l);\ } else { \ char *ret; \ - int ret_len = spprintf(&ret, 0, __ret_type_sprint_mod, (my_ulonglong)l); \ + int ret_len = spprintf(&ret, 0, __ret_type_sprint_mod, l); \ ZVAL_STRINGL(*retval, ret, ret_len, 0); \ } \ }\ |