From: Kitae Kim Date: Wed, 23 Apr 2014 11:36:17 +0000 (+0900) Subject: hax: fix compilation error X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~386^2~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b574fcb46f69fc747426050746e31e43228f2e6;p=sdk%2Femulator%2Fqemu.git hax: fix compilation error Remove spaces after back-slash on CPU_COMMON macro. Change-Id: If9a9e16acda24d5bd8309662baa5e7f2f2ab71eb Signed-off-by: Kitae Kim --- 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