Some stars to left

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31377 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Ruiz Dorantes 2009-07-02 20:43:04 +00:00
parent ddac407426
commit deb0a3ed2f
2 changed files with 7 additions and 7 deletions

View File

@ -690,7 +690,7 @@ LocalDeviceImpl::PinCodeRequest(struct hci_ev_pin_code_req* event, BMessage* req
void
LocalDeviceImpl::RoleChange(hci_ev_role_change *event, BMessage* request, int32 index)
LocalDeviceImpl::RoleChange(hci_ev_role_change* event, BMessage* request, int32 index)
{
Output::Instance()->Postf(BLACKBOARD_LD(GetID()),"%s: Address %s role=%d status=%d\n",
__FUNCTION__, bdaddrUtils::ToString(event->bdaddr), event->role, event->status);
@ -726,7 +726,7 @@ LocalDeviceImpl::MaxSlotChange(struct hci_ev_max_slot_change *event,
void
LocalDeviceImpl::HardwareError(struct hci_ev_hardware_error *event)
LocalDeviceImpl::HardwareError(struct hci_ev_hardware_error* event)
{
Output::Instance()->Postf(BLACKBOARD_LD(GetID()),"%s: hardware code=%#x\n",

View File

@ -55,9 +55,9 @@ public:
void RoleChange(struct hci_ev_role_change* event, BMessage* request, int32 index);
void LinkKeyNotify(struct hci_ev_link_key_notify* event, BMessage* request, int32 index);
void PageScanRepetitionModeChange(struct hci_ev_page_scan_rep_mode_change* event, BMessage* request, int32 index);
void MaxSlotChange(struct hci_ev_max_slot_change *event, BMessage *request, int32 index);
void MaxSlotChange(struct hci_ev_max_slot_change* event, BMessage* request, int32 index);
void HardwareError(struct hci_ev_hardware_error *event);
void HardwareError(struct hci_ev_hardware_error* event);
};