From 7fd1667b1a14326446465659805e589764fb2102 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Fri, 23 Aug 2024 22:49:09 +0200 Subject: [PATCH] Autotools: Replace break 2 with break As there is not nested loop here, a single break can do as well. --- ext/mysqli/config.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/mysqli/config.m4 b/ext/mysqli/config.m4 index 631005b64c9be..9f534f29d26ad 100644 --- a/ext/mysqli/config.m4 +++ b/ext/mysqli/config.m4 @@ -13,7 +13,7 @@ AC_DEFUN([PHP_MYSQL_SOCKET_SEARCH], [ ; do if test -r $i; then MYSQL_SOCK=$i - break 2 + break fi done