mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-30 06:02:39 +01:00
network: Use uint8_t instead of unsigned char
This commit is contained in:
parent
954f4ebca2
commit
29387e012a
@ -312,7 +312,7 @@ enum security network_get_security(const struct network *network)
|
||||
return network->info->type;
|
||||
}
|
||||
|
||||
const unsigned char *network_get_psk(const struct network *network)
|
||||
const uint8_t *network_get_psk(const struct network *network)
|
||||
{
|
||||
return network->psk;
|
||||
}
|
||||
|
@ -39,7 +39,7 @@ const char *network_get_ssid(const struct network *network);
|
||||
struct device *network_get_device(const struct network *network);
|
||||
const char *network_get_path(const struct network *network);
|
||||
enum security network_get_security(const struct network *network);
|
||||
const unsigned char *network_get_psk(const struct network *network);
|
||||
const uint8_t *network_get_psk(const struct network *network);
|
||||
int network_get_signal_strength(const struct network *network);
|
||||
struct l_settings *network_get_settings(const struct network *network);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user