mirror of
https://github.com/siderolabs/extensions.git
synced 2025-08-06 06:17:11 +02:00
``` | Package | Update | Change | |---|---|---| | [https://github.com/qemu/qemu.git](https://togithub.com/qemu/qemu) | patch | `8.2.2` -> `8.2.3` | | [kubernetes/cloud-provider-aws](https://togithub.com/kubernetes/cloud-provider-aws) | minor | `v1.28.1` -> `v1.30.0` | | [tailscale/tailscale](https://togithub.com/tailscale/tailscale) | minor | `1.62.1` -> `1.64.2` | ``` Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
17 lines
559 B
Diff
17 lines
559 B
Diff
diff --git monitor.c monitor.c
|
|
index 81537ed..08027ac 100644
|
|
--- a/monitor.c
|
|
+++ b/monitor.c
|
|
@@ -447,9 +447,9 @@ static int read_and_act(struct active_array *a, fd_set *fds)
|
|
}
|
|
|
|
gettimeofday(&tv, NULL);
|
|
- dprintf("(%d): %ld.%06ld state:%s prev:%s action:%s prev: %s start:%llu\n",
|
|
+ dprintf("(%d): %lld.%06ld state:%s prev:%s action:%s prev: %s start:%llu\n",
|
|
a->info.container_member,
|
|
- tv.tv_sec, tv.tv_usec,
|
|
+ (long long)tv.tv_sec, (long)tv.tv_usec,
|
|
array_states[a->curr_state],
|
|
array_states[a->prev_state],
|
|
sync_actions[a->curr_action],
|