mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-04-20 04:50:43 +02:00
cli: fix type when setting variadic argument in nmc_property_set_uint()
Signed-off-by: Thomas Haller <thaller@redhat.com>
This commit is contained in:
parent
210e0dbc11
commit
c9476a4242
1 changed files with 1 additions and 1 deletions
|
|
@ -2155,7 +2155,7 @@ nmc_property_set_uint (NMSetting *setting, const char *prop, const char *val, GE
|
|||
if (!validate_uint (setting, prop, (guint) val_int, error))
|
||||
return FALSE;
|
||||
|
||||
g_object_set (setting, prop, val_int, NULL);
|
||||
g_object_set (setting, prop, (guint) val_int, NULL);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue