qemu: Fix indentation issue

Two #define lines introduced by b527aa0 did not respect the
indentation rules, thus breaking syntax-check.
This commit is contained in:
Andrea Bolognani 2015-10-07 11:07:11 +02:00
parent b527aa090d
commit 7cdf944b0a
1 changed files with 2 additions and 2 deletions

View File

@ -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;