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.
This commit is contained in:
Peter Krempa 2015-01-20 19:38:00 +01:00
parent 338b07afa9
commit f18f1183e5

View File

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