summaryrefslogtreecommitdiff
path: root/ext/standard/crypt_sha512.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/crypt_sha512.c')
-rw-r--r--ext/standard/crypt_sha512.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/crypt_sha512.c b/ext/standard/crypt_sha512.c
index 94dc772fd9..f896dad5a8 100644
--- a/ext/standard/crypt_sha512.c
+++ b/ext/standard/crypt_sha512.c
@@ -377,7 +377,7 @@ php_sha512_crypt_r(const char *key, const char *salt, char *buffer, int buflen)
char *s_bytes;
/* Default number of rounds. */
size_t rounds = ROUNDS_DEFAULT;
- zend_bool rounds_custom = 0;
+ bool rounds_custom = 0;
/* Find beginning of salt string. The prefix should normally always
be present. Just in case it is not. */