diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2017-02-01 12:02:50 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-01 12:02:50 +0300 |
commit | b5267219ddd327207128b3e311f29eac232c6dde (patch) | |
tree | 1672e02ca6d0caa73ffb0e73b998bda6e106726d /src/core/timer.c | |
parent | a38d90c672adf85cc3d164326efd26b361222f48 (diff) | |
parent | 6154d33de3f15bbd5d5df718103af9c37ba0a768 (diff) |
Merge pull request #5166 from keszybz/gcc7
Fixes for gcc 7 and new µhttpd & glibc warnings
Diffstat (limited to 'src/core/timer.c')
-rw-r--r-- | src/core/timer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/timer.c b/src/core/timer.c index c6b28dd9c5..5ee14669d2 100644 --- a/src/core/timer.c +++ b/src/core/timer.c @@ -422,7 +422,8 @@ static void timer_enter_waiting(Timer *t, bool initial) { } /* In a container we don't want to include the time the host * was already up when the container started, so count from - * our own startup. Fall through. */ + * our own startup. */ + /* fall through */ case TIMER_STARTUP: base = UNIT(t)->manager->userspace_timestamp.monotonic; break; |