From deb0a3ed2f00c5273319497eaf490570c8c6518c Mon Sep 17 00:00:00 2001 From: Oliver Ruiz Dorantes Date: Thu, 2 Jul 2009 20:43:04 +0000 Subject: [PATCH] Some stars to left git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31377 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/bluetooth/LocalDeviceImpl.cpp | 4 ++-- src/servers/bluetooth/LocalDeviceImpl.h | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/servers/bluetooth/LocalDeviceImpl.cpp b/src/servers/bluetooth/LocalDeviceImpl.cpp index 4216e17bed..21694918f2 100644 --- a/src/servers/bluetooth/LocalDeviceImpl.cpp +++ b/src/servers/bluetooth/LocalDeviceImpl.cpp @@ -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", diff --git a/src/servers/bluetooth/LocalDeviceImpl.h b/src/servers/bluetooth/LocalDeviceImpl.h index 526325bb29..b69a43381d 100644 --- a/src/servers/bluetooth/LocalDeviceImpl.h +++ b/src/servers/bluetooth/LocalDeviceImpl.h @@ -39,12 +39,12 @@ public: /* Events handling */ void CommandComplete(struct hci_ev_cmd_complete* event, BMessage* request, int32 index); void CommandStatus(struct hci_ev_cmd_status* event, BMessage* request, int32 index); - + // Inquiry void InquiryResult(uint8* numberOfResponses, BMessage* request); void InquiryComplete(uint8* status, BMessage* request); void RemoteNameRequestComplete(struct hci_ev_remote_name_request_complete_reply* remotename, BMessage* request); - + // Connection void ConnectionComplete(struct hci_ev_conn_complete* event, BMessage* request); void ConnectionRequest(struct hci_ev_conn_request* event, BMessage* request); @@ -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 HardwareError(struct hci_ev_hardware_error *event); + void MaxSlotChange(struct hci_ev_max_slot_change* event, BMessage* request, int32 index); + + void HardwareError(struct hci_ev_hardware_error* event); };