Skip to content

Commit 6351468

Browse files
authored
Autotools: Replace break 2 with break (#15563)
As there is not nested loop here, a single break can do as well.
1 parent dc8f18a commit 6351468

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/mysqli/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ AC_DEFUN([PHP_MYSQL_SOCKET_SEARCH], [
1313
; do
1414
if test -r $i; then
1515
MYSQL_SOCK=$i
16-
break 2
16+
break
1717
fi
1818
done
1919

0 commit comments

Comments
 (0)