From a61029b15554d1a5da81a6e6d498f02629bf4242 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rouven=20We=C3=9Fling?= Date: Thu, 28 Jan 2016 17:11:53 +0100 Subject: Replace usage of php_int32 and php_uint32 with int32_t and uint32_t --- ext/standard/php_crypt_r.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/standard/php_crypt_r.c') 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); -- cgit v1.2.1