diff options
author | Rouven Weßling <rouven@contentful.com> | 2016-01-29 13:47:47 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2016-02-04 11:57:41 +0100 |
commit | 7e0459e7cef32a143f8c0eb80b8b85e74b19c615 (patch) | |
tree | a77a833853f69567af3c080324232eb4c739c445 /ext/hash/php_hash_crc32.h | |
parent | e93c28053d7d31853f59dc5adf0bfaff52819fb2 (diff) | |
download | php-git-7e0459e7cef32a143f8c0eb80b8b85e74b19c615.tar.gz |
Replace usage of php_hash_uint32 and php_hash_uint64 with uint32_t and uint64_t.
Remove the unused php_hash_int32 and php_hash_int64.
Diffstat (limited to 'ext/hash/php_hash_crc32.h')
-rw-r--r-- | ext/hash/php_hash_crc32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/hash/php_hash_crc32.h b/ext/hash/php_hash_crc32.h index 0d3d13e0c8..377be020cb 100644 --- a/ext/hash/php_hash_crc32.h +++ b/ext/hash/php_hash_crc32.h @@ -24,7 +24,7 @@ #include "ext/standard/basic_functions.h" typedef struct { - php_hash_uint32 state; + uint32_t state; } PHP_CRC32_CTX; PHP_HASH_API void PHP_CRC32Init(PHP_CRC32_CTX *context); |