mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-08 14:48:10 +02:00
platform: fix type for timestamp in delayed_action_wait_for_nl_response_complete_check()
Fixes: d074ffc836 ('platform: refactor completing netlink responses in event_handler_read_netlink()')
This commit is contained in:
parent
f21340ab5c
commit
65cdbd355f
1 changed files with 1 additions and 1 deletions
|
|
@ -5946,7 +5946,7 @@ delayed_action_wait_for_nl_response_complete_check(NMPlatform *platf
|
||||||
guint i;
|
guint i;
|
||||||
guint32 next_seq_number = 0;
|
guint32 next_seq_number = 0;
|
||||||
gint64 next_timeout_abs_ns = 0;
|
gint64 next_timeout_abs_ns = 0;
|
||||||
int now_ns = 0;
|
gint64 now_ns = 0;
|
||||||
|
|
||||||
for (i = 0; i < priv->delayed_action.list_wait_for_nl_response->len;) {
|
for (i = 0; i < priv->delayed_action.list_wait_for_nl_response->len;) {
|
||||||
const DelayedActionWaitForNlResponseData *data =
|
const DelayedActionWaitForNlResponseData *data =
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue