diff options
author | Paolo Bonzini | 2020-02-12 20:15:29 +0100 |
---|---|---|
committer | Paolo Bonzini | 2020-02-12 20:15:29 +0100 |
commit | ead68df94d248c80fdbae220ae5425eb5af2e753 (patch) | |
tree | da3a85149e44c5935185aedff21a3b2461416166 | |
parent | 120881b9e888689cbdb90a1dd1689684d8bc95f3 (diff) |
KVM: x86: enable -Werror
Avoid more embarrassing mistakes. At least those that the compiler
can catch.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | arch/x86/kvm/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kvm/Makefile b/arch/x86/kvm/Makefile index b19ef421084d..4654e97a05cc 100644 --- a/arch/x86/kvm/Makefile +++ b/arch/x86/kvm/Makefile @@ -1,6 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 ccflags-y += -Iarch/x86/kvm +ccflags-y += -Werror KVM := ../../../virt/kvm |