summaryrefslogtreecommitdiffstats
path: root/src/bftw.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-08-09 12:39:22 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-08-09 12:39:22 -0400
commit9c74802117d97bdb55be08a954319e1b8733cb9d (patch)
treeb0d4f08d6d50e09a7085c6008fa7ad554e077fe2 /src/bftw.c
parente747c913adee1ae915509985dbd5025018037336 (diff)
downloadbfs-9c74802117d97bdb55be08a954319e1b8733cb9d.tar.xz
prelude: s/fallthru/_fallthrough/ for consistency with other attributes
Diffstat (limited to 'src/bftw.c')
-rw-r--r--src/bftw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bftw.c b/src/bftw.c
index f9ef2a1..bb155a4 100644
--- a/src/bftw.c
+++ b/src/bftw.c
@@ -1431,7 +1431,7 @@ static bool bftw_must_stat(const struct bftw_state *state, size_t depth, enum bf
if (!(bftw_stat_flags(state, depth) & BFS_STAT_NOFOLLOW)) {
return true;
}
- fallthru;
+ _fallthrough;
default:
#if __linux__