Interworking: Use unsigned integer for bitfield
Signed integer with one-bit value does not make much sense, so clean this up by using an unsigned integer instead.
This commit is contained in:
parent
180cdf45a4
commit
7a25f29d89
1 changed files with 3 additions and 3 deletions
|
@ -591,9 +591,9 @@ struct wpa_supplicant {
|
||||||
struct gas_query *gas;
|
struct gas_query *gas;
|
||||||
|
|
||||||
#ifdef CONFIG_INTERWORKING
|
#ifdef CONFIG_INTERWORKING
|
||||||
int fetch_anqp_in_progress:1;
|
unsigned int fetch_anqp_in_progress:1;
|
||||||
int network_select:1;
|
unsigned int network_select:1;
|
||||||
int auto_select:1;
|
unsigned int auto_select:1;
|
||||||
#endif /* CONFIG_INTERWORKING */
|
#endif /* CONFIG_INTERWORKING */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue