mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 15:40:10 +01:00
wifi: 64-bit compile warning fix
This commit is contained in:
parent
57a04fa59d
commit
0e3cdd615a
1 changed files with 1 additions and 1 deletions
|
|
@ -621,7 +621,7 @@ nm_supplicant_config_add_setting_wireless_security (NMSupplicantConfig *self,
|
|||
}
|
||||
} else {
|
||||
/* Invalid PSK */
|
||||
nm_warning ("Invalid PSK length %d: not between 8 and 63 characters inclusive.", psk_len);
|
||||
nm_warning ("Invalid PSK length %u: not between 8 and 63 characters inclusive.", (guint32) psk_len);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue