mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 22:04:26 +00:00
Merge "Cast hidl_pointer<T> to void*." am: 6033952ff1 am: fbedd83ffe
am: b5a4e86c5f
Change-Id: I6fcdbdcb6c312a8243c7a326afcda049de0a7ba2
This commit is contained in:
@@ -154,7 +154,7 @@ Return<void> Bar::thisIsNew() {
|
||||
}
|
||||
|
||||
Return<void> Bar::expectNullHandle(const native_handle_t* h, const Abc& xyz, expectNullHandle_cb _hidl_cb) {
|
||||
ALOGI("SERVER(Bar) h = %p, xyz.z = %p", h, xyz.z);
|
||||
ALOGI("SERVER(Bar) h = %p, xyz.z = %p", h, static_cast<void*>(xyz.z));
|
||||
_hidl_cb(h == nullptr, xyz.z == nullptr);
|
||||
return Void();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user