mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-30 00:20:11 +01:00
device: fix type of loop variable in tc_commit()
nqdiscs and ntfilters are unsigned integers. The loop variable must agree in
range and signedness.
(cherry picked from commit 438855e915)
This commit is contained in:
parent
38cf36022e
commit
73fdcd38f1
1 changed files with 1 additions and 1 deletions
|
|
@ -6496,7 +6496,7 @@ tc_commit (NMDevice *self)
|
|||
NMSettingTCConfig *s_tc = NULL;
|
||||
int ip_ifindex;
|
||||
guint nqdiscs, ntfilters;
|
||||
int i;
|
||||
guint i;
|
||||
|
||||
connection = nm_device_get_applied_connection (self);
|
||||
if (connection)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue