diff options
author | Thomas Huth | 2020-09-11 14:53:01 +0200 |
---|---|---|
committer | Laurent Vivier | 2020-09-11 21:25:59 +0200 |
commit | 8821e21414468b1810f0ccf38bcbfa5c0bd1d56b (patch) | |
tree | 96135c092c95b16aff72e5fdc71c9a43723d49b3 | |
parent | util/hexdump: Reorder qemu_hexdump() arguments (diff) | |
download | qemu-8821e21414468b1810f0ccf38bcbfa5c0bd1d56b.tar.gz qemu-8821e21414468b1810f0ccf38bcbfa5c0bd1d56b.tar.xz qemu-8821e21414468b1810f0ccf38bcbfa5c0bd1d56b.zip |
target/i386/kvm: Add missing fallthrough comment
Let's make this file compilable with -Werror=implicit-fallthrough :
Looking at the code, it seems like the fallthrough is intended here,
so we should add the corresponding "/* fallthrough */" comment here.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200911125301.413081-1-thuth@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
-rw-r--r-- | target/i386/kvm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/i386/kvm.c b/target/i386/kvm.c index 3d640a8dec..d87af57a23 100644 --- a/target/i386/kvm.c +++ b/target/i386/kvm.c @@ -1568,6 +1568,7 @@ int kvm_arch_init_vcpu(CPUState *cs) if (env->nr_dies < 2) { break; } + /* fallthrough */ case 4: case 0xb: case 0xd: |