Commits
2025356 and
ba72cb12 introduced typos.
* src/util/virpci.c (virPCIIsVirtualFunction) [!__linux__]: Fix
function name.
* src/util/virutil.c (virGetDeviceID): Fix attribute spelling.
/*
* virpci.c: helper APIs for managing host PCI devices
*
- * Copyright (C) 2009-2012 Red Hat, Inc.
+ * Copyright (C) 2009-2013 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
}
int
-virPCIDeviceIsVirtualFunction(const char *vf_sysfs_device_link ATTRIBUTE_UNUSED)
+virPCIIsVirtualFunction(const char *vf_sysfs_device_link ATTRIBUTE_UNUSED)
{
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
return -1;
}
#else
int
-virGetDeviceID(const char *path ATRRIBUTE_UNUSED,
- int *maj ATRRIBUTE_UNUSED,
- int *min ATRRIBUTE_UNUSED)
+virGetDeviceID(const char *path ATTRIBUTE_UNUSED,
+ int *maj ATTRIBUTE_UNUSED,
+ int *min ATTRIBUTE_UNUSED)
{
return -ENOSYS;