mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-27 23:20:31 +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') (cherry picked from commite0e58fd5bc)
This commit is contained in:
parent
5f17edea5b
commit
46cf9bc9fe
1 changed files with 1 additions and 1 deletions
|
|
@ -468,7 +468,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