From 3b574fcb46f69fc747426050746e31e43228f2e6 Mon Sep 17 00:00:00 2001 From: Kitae Kim Date: Wed, 23 Apr 2014 20:36:17 +0900 Subject: [PATCH] hax: fix compilation error Remove spaces after back-slash on CPU_COMMON macro. Change-Id: If9a9e16acda24d5bd8309662baa5e7f2f2ab71eb Signed-off-by: Kitae Kim --- include/exec/cpu-defs.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/exec/cpu-defs.h b/include/exec/cpu-defs.h index 01c0ee8eb0..0d82a607ac 100644 --- a/include/exec/cpu-defs.h +++ b/include/exec/cpu-defs.h @@ -119,8 +119,8 @@ QEMU_BUILD_BUG_ON(sizeof(CPUTLBEntry) != (1 << CPU_TLB_ENTRY_BITS)); /* soft mmu support */ \ CPU_COMMON_TLB \ \ - /* for hax */ \ - int hax_vcpu_dirty; \ - struct hax_vcpu_state *hax_vcpu; \ + /* for hax */ \ + int hax_vcpu_dirty; \ + struct hax_vcpu_state *hax_vcpu; \ #endif -- 2.34.1