mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-05 12:40:16 +01:00
dns: fix format string for printing size_t in send_updates()
This in particular breaks i386 builds.
Fixes: 6f663b8f8e ('dns: log about what NMDnsSystemdResolved is doing')
This commit is contained in:
parent
544c223557
commit
e0e58fd5bc
1 changed files with 1 additions and 1 deletions
|
|
@ -463,7 +463,7 @@ send_updates(NMDnsSystemdResolved *self)
|
|||
|
||||
priv->send_updates_waiting = FALSE;
|
||||
|
||||
_LOGT("send-updates: start %lu requests", c_list_length(&priv->request_queue_lst_head));
|
||||
_LOGT("send-updates: start %zu requests", c_list_length(&priv->request_queue_lst_head));
|
||||
|
||||
c_list_for_each_entry (request_item, &priv->request_queue_lst_head, request_queue_lst) {
|
||||
gs_free char *ss = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue