From 0e9df6bd1015bec72c63f14c0efa085ea7c75895 Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Thu, 28 Mar 2013 13:20:41 +0100 Subject: [PATCH] virutil: Fix compilation on non-linux platforms There has been a typo in virIsCapbleVport function name. --- src/util/virutil.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/virutil.c b/src/util/virutil.c index d5f122f6c5..87a97c9a0a 100644 --- a/src/util/virutil.c +++ b/src/util/virutil.c @@ -3590,8 +3590,8 @@ virIsCapableFCHost(const char *sysfs_prefix ATTRIBUTE_UNUSED, } int -virIsCapbleVport(const char *sysfs_prefix ATTRIBUTE_UNUSED, - int host ATTRIBUTE_UNUSED) +virIsCapableVport(const char *sysfs_prefix ATTRIBUTE_UNUSED, + int host ATTRIBUTE_UNUSED) { virReportSystemError(ENOSYS, "%s", _("Not supported on this platform")); return -1;