From d6072de4ffe19ea57fe94caedbb39f1f7517182b Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 24 Mar 2014 17:34:45 -0500 Subject: [PATCH] arm: Replace #ifdef with #if defined, etc. No functional change. --- src/launch-libvirt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/launch-libvirt.c b/src/launch-libvirt.c index b8575ce8b..e4563f869 100644 --- a/src/launch-libvirt.c +++ b/src/launch-libvirt.c @@ -996,7 +996,7 @@ construct_libvirt_xml_cpu (guestfs_h *g, string_format ("%d", g->memsize); } end_element (); -#ifndef __arm__ +#if !defined(__arm__) /* It is faster to pass the CPU host model to the appliance, * allowing maximum speed for things like checksums, encryption. * Only do this with KVM. It is broken in subtle ways on TCG, and @@ -1153,7 +1153,7 @@ construct_libvirt_xml_devices (guestfs_h *g, string (g->hv); } end_element (); } -#ifdef __arm__ +#if defined(__arm__) /* Hopefully temporary hack to make ARM work (otherwise libvirt * chooses to run /usr/bin/qemu-kvm). */