diff options
author | Anatol Belski <ab@php.net> | 2014-08-18 16:50:54 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-18 16:50:54 +0200 |
commit | b8324e6d635450562ecb253af38f22105e19e460 (patch) | |
tree | eadecc2f5c251a20013c600212104b0ba4cce8bc /ext/standard/php_uuencode.h | |
parent | 97e9d058f09c12161863e5c3832552eb5da3f3c6 (diff) | |
download | php-git-b8324e6d635450562ecb253af38f22105e19e460.tar.gz |
further fixes to ext/standard
Diffstat (limited to 'ext/standard/php_uuencode.h')
-rw-r--r-- | ext/standard/php_uuencode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/php_uuencode.h b/ext/standard/php_uuencode.h index fedfe660e9..670fa3f63e 100644 --- a/ext/standard/php_uuencode.h +++ b/ext/standard/php_uuencode.h @@ -24,8 +24,8 @@ PHP_FUNCTION(convert_uudecode); PHP_FUNCTION(convert_uuencode); -PHPAPI zend_string *php_uudecode(char *src, int src_len); -PHPAPI zend_string *php_uuencode(char *src, int src_len); +PHPAPI zend_string *php_uudecode(char *src, php_size_t src_len); +PHPAPI zend_string *php_uuencode(char *src, php_size_t src_len); #endif /* PHP_UUENCODE_H */ |