diff options
| author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2019-07-19 15:14:24 +0200 |
|---|---|---|
| committer | Laurent Vivier <laurent@vivier.eu> | 2019-08-21 10:58:25 +0200 |
| commit | 4e8de60623f49def9016b8174261e9ab84f79bb7 (patch) | |
| tree | 70c848f7fb200d96da8b8476d0d712cbc4ba4699 /vl.c | |
| parent | b1d5b6e507c168a939b753be52f518d2981a2b51 (diff) | |
| download | focaccia-qemu-4e8de60623f49def9016b8174261e9ab84f79bb7.tar.gz focaccia-qemu-4e8de60623f49def9016b8174261e9ab84f79bb7.zip | |
vl: Rewrite a fall through comment
GCC9 is confused by this comment when building with CFLAG
-Wimplicit-fallthrough=2:
vl.c: In function ‘qemu_ref_timedate’:
vl.c:773:15: error: this statement may fall through [-Werror=implicit-fallthrough=]
773 | value -= rtc_realtime_clock_offset;
| ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
vl.c:775:5: note: here
775 | case QEMU_CLOCK_VIRTUAL:
| ^~~~
cc1: all warnings being treated as errors
Rewrite the comment using 'fall through' which is recognized by
GCC and static analyzers.
Reported-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Message-Id: <20190719131425.10835-7-philmd@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'vl.c')
| -rw-r--r-- | vl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vl.c b/vl.c index edd5390110..1588dd8fc3 100644 --- a/vl.c +++ b/vl.c @@ -772,7 +772,7 @@ static time_t qemu_ref_timedate(QEMUClockType clock) switch (clock) { case QEMU_CLOCK_REALTIME: value -= rtc_realtime_clock_offset; - /* no break */ + /* fall through */ case QEMU_CLOCK_VIRTUAL: value += rtc_ref_start_datetime; break; |