1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00

sysutils/xen-guest-tools: fix build on i386

This commit is contained in:
Dirk Meyer 2023-03-13 14:41:00 +01:00
parent eedae3f3cb
commit f9b6eae26c

View File

@ -0,0 +1,11 @@
--- tools/xenstore/xenstored_control.c.orig 2022-04-12 12:21:23 UTC
+++ tools/xenstore/xenstored_control.c
@@ -537,7 +537,7 @@ static const char *lu_reject_reason(const void *ctx)
ret = talloc_asprintf(ctx, "%s\nDomain %u: %ld s",
ret ? : "Domains with long running transactions:",
conn->id,
- now - conn->ta_start_time);
+ (long)(now - conn->ta_start_time));
}
}