diff options
author | Shawn Landden <slandden@gmail.com> | 2017-11-19 10:06:10 -0800 |
---|---|---|
committer | Shawn Landden <slandden@gmail.com> | 2017-11-20 13:06:25 -0800 |
commit | 4831981d89c628606c825779c75afb03b4839618 (patch) | |
tree | 7e35cbb6e0f1fedb3e543dc14d9ac2553e8ed39e /src/basic/time-util.c | |
parent | d8bd96ab54ab60de5b12aa767eeea94a4cca685c (diff) | |
download | systemd-4831981d89c628606c825779c75afb03b4839618.tar.gz systemd-4831981d89c628606c825779c75afb03b4839618.tar.bz2 systemd-4831981d89c628606c825779c75afb03b4839618.zip |
tree-wide: adjust fall through comments so that gcc is happy
Distcc removes comments, making the comment silencing
not work.
I know there was a decision against a macro in commit
ec251fe7d5bc24b5d38b0853bc5969f3a0ba06e2
Diffstat (limited to 'src/basic/time-util.c')
-rw-r--r-- | src/basic/time-util.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/basic/time-util.c b/src/basic/time-util.c index f5af3281a1..bd5a6ae613 100644 --- a/src/basic/time-util.c +++ b/src/basic/time-util.c @@ -1382,8 +1382,7 @@ bool clock_supported(clockid_t clock) { if (!clock_boottime_supported()) return false; - /* fall through */ - + _fallthrough_; default: /* For everything else, check properly */ return clock_gettime(clock, &ts) >= 0; |