diff options
Diffstat (limited to 'ext/standard/quot_print.c')
| -rw-r--r-- | ext/standard/quot_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/quot_print.c b/ext/standard/quot_print.c index a55b1e5edc..be352cbf80 100644 --- a/ext/standard/quot_print.c +++ b/ext/standard/quot_print.c @@ -275,7 +275,7 @@ PHP_FUNCTION(quoted_printable_encode) RETURN_EMPTY_STRING(); } - new_str = php_quot_print_encode((unsigned char *)ZSTR_VAL(str), (size_t)ZSTR_LEN(str)); + new_str = php_quot_print_encode((unsigned char *)ZSTR_VAL(str), ZSTR_LEN(str)); RETURN_STR(new_str); } /* }}} */ |
