Skip to content

Commit 52ea9da

Browse files
committed
- Fixed bug #53530 (php_crypt tests gcc version incorrectly due to
typo) (vapier at gmail dot com)
1 parent e90265a commit 52ea9da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/php_crypt_r.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ void _crypt_extended_init_r(void)
9494
if (!initialized) {
9595
#ifdef PHP_WIN32
9696
InterlockedIncrement(&initialized);
97-
#elif (defined(__GNUC__) && (__GNUC__ >= 4 && __GNUC_MINOR >= 2))
97+
#elif (defined(__GNUC__) && (__GNUC__ >= 4 && __GNUC_MINOR__ >= 2))
9898
__sync_fetch_and_add(&initialized, 1);
9999
#elif defined(HAVE_ATOMIC_H) /* Solaris 10 defines atomic API within */
100100
membar_producer();

0 commit comments

Comments
 (0)