summaryrefslogtreecommitdiff
path: root/ext/standard/crc32.c
diff options
context:
space:
mode:
authorRouven Weßling <rouven@contentful.com>2016-01-28 17:11:53 +0100
committerNikita Popov <nikic@php.net>2016-02-04 11:57:41 +0100
commita61029b15554d1a5da81a6e6d498f02629bf4242 (patch)
tree36159f58938cc549879b313f8fd347f9c6087df0 /ext/standard/crc32.c
parentd998ca6e3cedfd663a1a40a36b814d05b5df6e71 (diff)
downloadphp-git-a61029b15554d1a5da81a6e6d498f02629bf4242.tar.gz
Replace usage of php_int32 and php_uint32 with int32_t and uint32_t
Diffstat (limited to 'ext/standard/crc32.c')
-rw-r--r--ext/standard/crc32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/crc32.c b/ext/standard/crc32.c
index 45a2eb0667..e6024dcf11 100644
--- a/ext/standard/crc32.c
+++ b/ext/standard/crc32.c
@@ -28,8 +28,8 @@ PHP_NAMED_FUNCTION(php_if_crc32)
{
char *p;
size_t nr;
- php_uint32 crcinit = 0;
- register php_uint32 crc;
+ uint32_t crcinit = 0;
+ register uint32_t crc;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &p, &nr) == FAILURE) {
return;