Merge "Use a 64-bit instance of 0x1 when creating the event bitmask." into udc-qpr-dev am: 140534a783
am: dc53a4ca8f
Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/interfaces/+/24058886 Change-Id: I0bad0dfa93843579fc80668ef927b157af71ae67 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
df4463b3b5
1 changed files with 2 additions and 2 deletions
|
@ -123,7 +123,7 @@ class WifiNanIfaceAidlTest : public testing::TestWithParam<std::string> {
|
|||
// Used as a mechanism to inform the test about data/event callbacks.
|
||||
inline void notify(CallbackType callbackType) {
|
||||
std::unique_lock<std::mutex> lock(mtx_);
|
||||
callback_event_bitmap_ |= (0x1 << callbackType);
|
||||
callback_event_bitmap_ |= (UINT64_C(0x1) << callbackType);
|
||||
cv_.notify_one();
|
||||
}
|
||||
|
||||
|
@ -143,7 +143,7 @@ class WifiNanIfaceAidlTest : public testing::TestWithParam<std::string> {
|
|||
}
|
||||
|
||||
inline bool receivedCallback(CallbackType waitForCallbackType) {
|
||||
return callback_event_bitmap_ & (0x1 << waitForCallbackType);
|
||||
return callback_event_bitmap_ & (UINT64_C(0x1) << waitForCallbackType);
|
||||
}
|
||||
|
||||
class WifiNanIfaceEventCallback : public BnWifiNanIfaceEventCallback {
|
||||
|
|
Loading…
Reference in a new issue