From: Jouni Malinen Date: Thu, 23 Apr 2020 22:33:16 +0000 (+0300) Subject: HE: Replace Boolean with C99 bool X-Git-Tag: hostap_2_10~1409 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0365458eb8c88b8972517c981ed86597cb2ab279;p=thirdparty%2Fhostap.git HE: Replace Boolean with C99 bool Signed-off-by: Jouni Malinen --- diff --git a/src/ap/ap_config.h b/src/ap/ap_config.h index 0503400b5..cffa636cc 100644 --- a/src/ap/ap_config.h +++ b/src/ap/ap_config.h @@ -865,9 +865,9 @@ struct hostapd_bss_config { * struct he_phy_capabilities_info - HE PHY capabilities */ struct he_phy_capabilities_info { - Boolean he_su_beamformer; - Boolean he_su_beamformee; - Boolean he_mu_beamformer; + bool he_su_beamformer; + bool he_su_beamformee; + bool he_mu_beamformer; }; /**