7ba9967287
Fix build of xen with 64 bites time_t: /tmp/instance-0/output-1/build/xen-4.14.2/tools/qemu-xen/hw/input/virtio-input-host.c: In function 'virtio_input_host_handle_status': /tmp/instance-0/output-1/build/xen-4.14.2/tools/qemu-xen/hw/input/virtio-input-host.c:198:28: error: 'struct input_event' has no member named 'time' 198 | if (gettimeofday(&evdev.time, NULL)) { | ^ Fixes: - http://autobuild.buildroot.org/results/136ce42f44bf48d3db4eda7b1548bf7ac1b97d51 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
From 4881285bcfd8f2e2c913c6e9f011b1e90652f414 Mon Sep 17 00:00:00 2001
|
|
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
Date: Sat, 28 Aug 2021 11:00:07 +0200
|
|
Subject: [PATCH] libs/light: fix tv_sec fprintf format
|
|
|
|
Don't assume tv_sec is a unsigned long, it is 64 bits on NetBSD 32 bits.
|
|
Use %jd and cast to (intmax_t) instead
|
|
|
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
[Upstream status: sent to xen-devel@lists.xenproject.org]
|
|
---
|
|
tools/libs/light/libxl_domain.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tools/libxl/libxl_domain.c b/tools/libxl/libxl_domain.c
|
|
index c00c36c928..51a6127552 100644
|
|
--- a/tools/libxl/libxl_domain.c
|
|
+++ b/tools/libxl/libxl_domain.c
|
|
@@ -1444,7 +1444,7 @@ static int libxl__mark_domid_recent(libxl__gc *gc, uint32_t domid)
|
|
}
|
|
}
|
|
|
|
- r = fprintf(nf, "%lu %u\n", ctxt.ts.tv_sec, domid);
|
|
+ r = fprintf(nf, "%jd %u\n", (intmax_t)ctxt.ts.tv_sec, domid);
|
|
if (r < 0) {
|
|
LOGED(ERROR, domid, "failed to write to '%s'", new);
|
|
goto out;
|
|
--
|
|
2.32.0
|
|
|