Do not use C++ reserved words as variable names
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
eaa3728a64
commit
a6da824b19
3 changed files with 24 additions and 24 deletions
|
@ -2994,9 +2994,9 @@ void wpa_gtk_rekey(struct wpa_authenticator *wpa_auth)
|
|||
}
|
||||
|
||||
|
||||
static const char * wpa_bool_txt(int bool)
|
||||
static const char * wpa_bool_txt(int val)
|
||||
{
|
||||
return bool ? "TRUE" : "FALSE";
|
||||
return val ? "TRUE" : "FALSE";
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue