From: Peter Krempa Date: Tue, 20 Jan 2015 18:38:00 +0000 (+0100) Subject: conf: Fix comment mentioning actual type of @multi member of virDevicePCIAddress X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=f18f1183e5d6a93a9fd80ac71bf54a037693ce16;p=libvirt.git conf: Fix comment mentioning actual type of @multi member of virDevicePCIAddress After refactor to use the virTristateSwitch enum the comment in the struct was not adjusted. --- diff --git a/src/conf/device_conf.h b/src/conf/device_conf.h index f067a35866..7256cdcf53 100644 --- a/src/conf/device_conf.h +++ b/src/conf/device_conf.h @@ -52,7 +52,7 @@ struct _virDevicePCIAddress { unsigned int bus; unsigned int slot; unsigned int function; - int multi; /* enum virDomainDeviceAddressPCIMulti */ + int multi; /* virTristateSwitch */ }; typedef struct _virInterfaceLink virInterfaceLink;