Skip to content

Commit 9bfe2ac

Browse files
committed
Fix [-Wimplicit-fallthrough] warnings in DBA extension
1 parent 2bda4e6 commit 9bfe2ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/dba/dba.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ static void php_dba_open(INTERNAL_FUNCTION_PARAMETERS, int persistent)
637637
lock_flag = (hptr->flags & DBA_LOCK_ALL);
638638
break;
639639
}
640-
/* no break */
640+
fallthrough;
641641
case 'l':
642642
lock_flag = DBA_LOCK_ALL;
643643
if ((hptr->flags & DBA_LOCK_ALL) == 0) {

0 commit comments

Comments
 (0)