We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a500cb commit 58005d7Copy full SHA for 58005d7
Zend/zend_operators.c
@@ -2463,7 +2463,7 @@ ZEND_API void zend_update_current_locale(void) /* {{{ */
2463
static zend_always_inline void zend_str_tolower_impl(char *dest, const char *str, size_t length) /* {{{ */ {
2464
register unsigned char *p = (unsigned char*)str;
2465
register unsigned char *q = (unsigned char*)dest;
2466
- register unsigned char *end = p + length;
+ unsigned char *end = p + length;
2467
#ifdef __SSE2__
2468
if (length >= 16) {
2469
const __m128i _A = _mm_set1_epi8('A' - 1);
0 commit comments