mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-05 00:38:07 +02:00
platform: fix format string for logging MTU in nm_platform_link_set_mtu()
Signed-off-by: Thomas Haller <thaller@redhat.com>
This commit is contained in:
parent
8c48fcf96c
commit
94a6f609f7
1 changed files with 1 additions and 1 deletions
|
|
@ -938,7 +938,7 @@ nm_platform_link_set_mtu (int ifindex, guint32 mtu)
|
|||
g_return_val_if_fail (mtu > 0, FALSE);
|
||||
g_return_val_if_fail (klass->link_set_mtu, FALSE);
|
||||
|
||||
debug ("link: setting '%s' (%d) mtu %d", nm_platform_link_get_name (ifindex), ifindex, mtu);
|
||||
debug ("link: setting '%s' (%d) mtu %"G_GUINT32_FORMAT, nm_platform_link_get_name (ifindex), ifindex, mtu);
|
||||
return klass->link_set_mtu (platform, ifindex, mtu);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue