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-changelog

[Xen-changelog] [xen-unstable] tools: Build fixes.

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] tools: Build fixes.
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Sat, 29 May 2010 00:31:27 -0700
Delivery-date: Sat, 29 May 2010 00:36:32 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1275036350 -3600
# Node ID 95acf74586d782d8d4d39016b3426a1eae127e97
# Parent  eca99674800e9072b8ffbc5dffa5823746cd7352
tools: Build fixes.

Signed-off-by: Keir Fraser <keir.fraser@xxxxxxxxxx>
---
 tools/libxc/xtl_logger_stdio.c |    2 +-
 tools/libxl/libxl.c            |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff -r eca99674800e -r 95acf74586d7 tools/libxc/xtl_logger_stdio.c
--- a/tools/libxc/xtl_logger_stdio.c    Fri May 28 09:38:56 2010 +0100
+++ b/tools/libxc/xtl_logger_stdio.c    Fri May 28 09:45:50 2010 +0100
@@ -61,7 +61,7 @@ static void stdiostream_vmessage(xentool
     vfprintf(lg->f, format, al);
 
     if (errnoval >= 0)
-        vfprintf(lg->f, ": %s", strerror(errnoval));
+        fprintf(lg->f, ": %s", strerror(errnoval));
 
     putc('\n', lg->f);
     fflush(lg->f);
diff -r eca99674800e -r 95acf74586d7 tools/libxl/libxl.c
--- a/tools/libxl/libxl.c       Fri May 28 09:38:56 2010 +0100
+++ b/tools/libxl/libxl.c       Fri May 28 09:45:50 2010 +0100
@@ -2283,7 +2283,7 @@ int libxl_device_pci_add(struct libxl_ct
                     rc = xc_domain_iomem_permission(ctx->xch, domid, 
start>>XC_PAGE_SHIFT,
                                                     
(size+(XC_PAGE_SIZE-1))>>XC_PAGE_SHIFT, 1);
                     if (rc < 0)
-                        XL_LOG_ERRNOVAL(ctx, XL_LOG_ERROR, rc, "Error: 
xc_domain_iomem_permission error 0x%x/0x%x", start, size);
+                        XL_LOG_ERRNOVAL(ctx, XL_LOG_ERROR, rc, "Error: 
xc_domain_iomem_permission error 0x%llx/0x%llx", start, size);
                 }
             }
         }

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] tools: Build fixes., Xen patchbot-unstable <=