diff options
| author | Dirk Meyer <dinoex@FreeBSD.org> | 2023-03-13 13:41:00 +0000 |
|---|---|---|
| committer | Dirk Meyer <dinoex@FreeBSD.org> | 2023-03-13 13:41:00 +0000 |
| commit | f9b6eae26cb3f5c77977b0d9009a8eaf1e606684 (patch) | |
| tree | e168e0f142f1840435225cfe46379b7bde95bb74 | |
| parent | eedae3f3cbc6562d51e5604a179174b8ec5e1a90 (diff) | |
sysutils/xen-guest-tools: fix build on i386
| -rw-r--r-- | sysutils/xen-guest-tools/files/patch-xenstored_control.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sysutils/xen-guest-tools/files/patch-xenstored_control.c b/sysutils/xen-guest-tools/files/patch-xenstored_control.c new file mode 100644 index 000000000000..3aec3bbb7395 --- /dev/null +++ b/sysutils/xen-guest-tools/files/patch-xenstored_control.c @@ -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)); + } + } + |
