From: Eric Blake Date: Mon, 21 May 2012 18:36:50 +0000 (-0600) Subject: build: fix unused variable after last patch X-Git-Tag: v0.9.13-rc1~232 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8e6021e7b7ef0d371cac59fa333848c8cebffd0;p=thirdparty%2Flibvirt.git build: fix unused variable after last patch The previous commit (2cb0899) left a dead variable behind. * src/libxl/libxl_driver.c (libxlClose): Drop dead variable. --- diff --git a/src/libxl/libxl_driver.c b/src/libxl/libxl_driver.c index fc90d1650c..500d51b4ba 100644 --- a/src/libxl/libxl_driver.c +++ b/src/libxl/libxl_driver.c @@ -1079,8 +1079,6 @@ libxlOpen(virConnectPtr conn, static int libxlClose(virConnectPtr conn ATTRIBUTE_UNUSED) { - libxlDriverPrivatePtr driver = conn->privateData; - conn->privateData = NULL; return 0; }