From: Bruce Rogers Date: Fri, 17 Jun 2016 15:08:16 +0000 (-0600) Subject: pic: fix typo in error message: KVM_GET_IRQCHIP -> KVM_SET_IRQCHIP X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=8928473699d5fc7a3914abb928af35b3a0dfa5ec;p=qmiga%2Fqemu.git pic: fix typo in error message: KVM_GET_IRQCHIP -> KVM_SET_IRQCHIP Signed-off-by: Bruce Rogers Signed-off-by: Michael Tokarev --- diff --git a/hw/i386/kvm/i8259.c b/hw/i386/kvm/i8259.c index 2b207de01b..11d1b726b6 100644 --- a/hw/i386/kvm/i8259.c +++ b/hw/i386/kvm/i8259.c @@ -92,7 +92,7 @@ static void kvm_pic_put(PICCommonState *s) ret = kvm_vm_ioctl(kvm_state, KVM_SET_IRQCHIP, &chip); if (ret < 0) { - fprintf(stderr, "KVM_GET_IRQCHIP failed: %s\n", strerror(ret)); + fprintf(stderr, "KVM_SET_IRQCHIP failed: %s\n", strerror(ret)); abort(); } }