From 0365458eb8c88b8972517c981ed86597cb2ab279 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 24 Apr 2020 01:33:16 +0300 Subject: [PATCH] HE: Replace Boolean with C99 bool Signed-off-by: Jouni Malinen --- src/ap/ap_config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }; /**