WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] [PATCH 12 of 45] gcc-4.6 compile fix: tools/libxl/libxl_pci.

To: xen-devel@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-devel] [PATCH 12 of 45] gcc-4.6 compile fix: tools/libxl/libxl_pci.c
From: Olaf Hering <olaf@xxxxxxxxx>
Date: Thu, 19 May 2011 21:05:31 +0200
Delivery-date: Thu, 19 May 2011 12:19:08 -0700
Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; t=1305832058; l=855; s=domk; d=aepfle.de; h=To:From:Date:References:In-Reply-To:Subject: Content-Transfer-Encoding:MIME-Version:Content-Type:X-RZG-CLASS-ID: X-RZG-AUTH; bh=Ist8ZMPSZipEhs1ZnDaP/VFnuac=; b=ymIUnNDIViQcf2W5Yd2yv2SXEn+G6/YxOcNajjpUa//9gIsgLN4hWaFhegEl0YFGbTR VdfH4XgBbIixm/dRYjbTqBPpkT18IVdZ6/AMbwZfMw9VVK45puj+Q7LWOqw53YYxainop 0J1hNxdKAs9t7ghDMitHvpfOSkmKl8NaCxI=
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
In-reply-to: <patchbomb.1305831919@xxxxxxxxxxxx>
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
References: <patchbomb.1305831919@xxxxxxxxxxxx>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Mercurial-patchbomb/1.7.5
# HG changeset patch
# User Olaf Hering <olaf@xxxxxxxxx>
# Date 1305824394 -7200
# Node ID a096a1358c6c4701d44f1467ccc36cf422ffb6a7
# Parent  da1b3aa3abf442694ba388968cc59b582ef3d8c9
gcc-4.6 compile fix: tools/libxl/libxl_pci.c

libxl_pci.c: In function 'libxl__create_pci_backend':
libxl_pci.c:230:9: error: variable 'ret' set but not used 
[-Werror=unused-but-set-variable]

Signed-off-by: Olaf Hering <olaf@xxxxxxxxx>

diff -r da1b3aa3abf4 -r a096a1358c6c tools/libxl/libxl_pci.c
--- a/tools/libxl/libxl_pci.c   Thu May 19 18:59:53 2011 +0200
+++ b/tools/libxl/libxl_pci.c   Thu May 19 18:59:54 2011 +0200
@@ -269,7 +269,7 @@ out:
         flexarray_free(back);
     if (front)
         flexarray_free(front);
-    return 0;
+    return ret;
 }
 
 static int libxl__device_pci_add_xenstore(libxl__gc *gc, uint32_t domid, 
libxl_device_pci *pcidev, int starting)

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>