You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by GitBox <gi...@apache.org> on 2019/01/11 13:18:40 UTC

[GitHub] rymanluk commented on a change in pull request #284: nimble/ll: Couple of fixes for extended scanner

rymanluk commented on a change in pull request #284: nimble/ll: Couple of fixes for extended scanner
URL: https://github.com/apache/mynewt-nimble/pull/284#discussion_r247112139
 
 

 ##########
 File path: nimble/controller/include/controller/ble_ll_scan.h
 ##########
 @@ -97,9 +97,9 @@ struct ble_ll_scan_params
 #define BLE_LL_AUX_TRUNCATED_SENT       0x40
 #define BLE_LL_AUX_HAS_ADI              0x80
 
-#define BLE_LL_SET_AUX_FLAG(aux_data, flag) ((aux_data)->flags |= flag)
-#define BLE_LL_CLEAR_AUX_FLAG(aux_data, flag) ((aux_data)->flags &= ~flag)
-#define BLE_LL_CHECK_AUX_FLAG(aux_data, flag) (!!((aux_data)->flags & flag))
+#define BLE_LL_AUX_SET_FLAG(aux_data, flag) ((aux_data)->flags |= flag)
+#define BLE_LL_AUX_CLEAR_FLAG(aux_data, flag) ((aux_data)->flags &= ~flag)
+#define BLE_LL_AUX_CHECK_FLAG(aux_data, flag) (!!((aux_data)->flags & flag))
 
 Review comment:
   agree

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services