VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Nick Desaulniers <ndesaulniers@google.com> 2020-11-15 20:35:31 -0800 committer: Gustavo A. R. Silva <gustavoars@kernel.org> 2020-11-18 14:15:17 -0600 commit: 4c1ca831adb1010e473a18eb01b3fbef7595f230 parent: 77433830ed164a0bc38dd43877bab3f7f7fd7fa3
Commit Summary:
Revert "lib: Revert use of fallthrough pseudo-keyword in lib/"
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/lib/glob.c b/lib/glob.c
index 52e3ed7e4a9b..85ecbda45cd8 100644
--- a/lib/glob.c
+++ b/lib/glob.c
@@ -102,7 +102,7 @@ bool __pure glob_match(char const *pat, char const *str)
 			break;
 		case '\\':
 			d = *pat++;
-			/* fall through */
+			fallthrough;
 		default:	/* Literal character */
 literal:
 			if (c == d) {