1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Autotools: Replace break 2 with break (#15563)

As there is not nested loop here, a single break can do as well.
This commit is contained in:
Peter Kokot
2024-08-24 00:49:13 +02:00
committed by GitHub
parent dc8f18af0b
commit 6351468a5e

View File

@@ -13,7 +13,7 @@ AC_DEFUN([PHP_MYSQL_SOCKET_SEARCH], [
; do
if test -r $i; then
MYSQL_SOCK=$i
break 2
break
fi
done