diff options
author | Rouven Weßling <rouven@contentful.com> | 2016-01-28 17:11:53 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2016-02-04 11:57:41 +0100 |
commit | a61029b15554d1a5da81a6e6d498f02629bf4242 (patch) | |
tree | 36159f58938cc549879b313f8fd347f9c6087df0 /ext/standard/php_crypt_r.c | |
parent | d998ca6e3cedfd663a1a40a36b814d05b5df6e71 (diff) | |
download | php-git-a61029b15554d1a5da81a6e6d498f02629bf4242.tar.gz |
Replace usage of php_int32 and php_uint32 with int32_t and uint32_t
Diffstat (limited to 'ext/standard/php_crypt_r.c')
-rw-r--r-- | ext/standard/php_crypt_r.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_crypt_r.c b/ext/standard/php_crypt_r.c index a8ca39b08e..8b97d4a496 100644 --- a/ext/standard/php_crypt_r.c +++ b/ext/standard/php_crypt_r.c @@ -323,7 +323,7 @@ char * php_md5_crypt_r(const char *pw, const char *salt, char *out) unsigned char final[16]; unsigned int i, sl, pwl; PHP_MD5_CTX ctx, ctx1; - php_uint32 l; + uint32_t l; int pl; pwl = strlen(pw); |