[libvirt] [PATCH] Fix typo in variable name

Guido Günther agx at sigxcpu.org
Wed Jan 16 19:57:46 UTC 2013


Hi,
I pushed that under the build breaker rule:

that broke the build like:

  CC     libvirt_conf_la-domain_conf.lo
  conf/domain_conf.c: In function 'virDomainVcpuPinAdd':
  conf/domain_conf.c:11920:29: error: 'vpcupin' undeclared (first use in this function)
  conf/domain_conf.c:11920:29: note: each undeclared identifier is reported only once for each function it appears in
  make[3]: *** [libvirt_conf_la-domain_conf.lo] Error 1
---
 src/conf/domain_conf.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c
index 88865b5..13c14e9 100644
--- a/src/conf/domain_conf.c
+++ b/src/conf/domain_conf.c
@@ -11917,7 +11917,7 @@ int virDomainVcpuPinAdd(virDomainVcpuPinDefPtr **vcpupin_list,
 
 no_memory:
     virReportOOMError();
-    virDomainVcpuPinDefFree(vpcupin);
+    virDomainVcpuPinDefFree(vcpupin);
     return -1;
 }
 
-- 
1.7.10.4




More information about the libvir-list mailing list