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:
Thomas Haller 2021-10-11 20:43:33 +02:00
parent 544c223557
commit e0e58fd5bc
No known key found for this signature in database
GPG key ID: 29C2366E4DFC5728

View file

@ -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;