summaryrefslogtreecommitdiff
path: root/ext/hash/php_hash_snefru.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/hash/php_hash_snefru.h')
-rw-r--r--ext/hash/php_hash_snefru.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/hash/php_hash_snefru.h b/ext/hash/php_hash_snefru.h
index c926022360..a73e157490 100644
--- a/ext/hash/php_hash_snefru.h
+++ b/ext/hash/php_hash_snefru.h
@@ -2,7 +2,7 @@
+----------------------------------------------------------------------+
| PHP Version 7 |
+----------------------------------------------------------------------+
- | Copyright (c) 1997-2017 The PHP Group |
+ | Copyright (c) 1997-2018 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
@@ -29,8 +29,8 @@
/* SNEFRU context */
typedef struct {
- php_hash_uint32 state[16];
- php_hash_uint32 count[2];
+ uint32_t state[16];
+ uint32_t count[2];
unsigned char length;
unsigned char buffer[32];
} PHP_SNEFRU_CTX;