From: Andrea Bolognani Date: Wed, 7 Oct 2015 09:07:11 +0000 (+0200) Subject: qemu: Fix indentation issue X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=7cdf944b0af529919f9dc3f26e81f93ba67b3459;p=people%2Fliuw%2Flibxenctrl-split%2Flibvirt.git qemu: Fix indentation issue Two #define lines introduced by b527aa0 did not respect the indentation rules, thus breaking syntax-check. --- diff --git a/src/qemu/qemu_capabilities.h b/src/qemu/qemu_capabilities.h index 7b0e3eb14..b883315bd 100644 --- a/src/qemu/qemu_capabilities.h +++ b/src/qemu/qemu_capabilities.h @@ -316,8 +316,8 @@ typedef enum { } virQEMUCapsFlags; /* Aliases for some of the capabilities defined above */ -#define QEMU_CAPS_NET_NAME QEMU_CAPS_0_10 /* -net ...,name=str */ -#define QEMU_CAPS_HOST_NET_ADD QEMU_CAPS_0_10 /* host_net_add command */ +# define QEMU_CAPS_NET_NAME QEMU_CAPS_0_10 /* -net ...,name=str */ +# define QEMU_CAPS_HOST_NET_ADD QEMU_CAPS_0_10 /* host_net_add command */ typedef struct _virQEMUCaps virQEMUCaps; typedef virQEMUCaps *virQEMUCapsPtr;