From 0a57e69fd3cf94089c28edc271a40915c51d6877 Mon Sep 17 00:00:00 2001 From: "matthias.ringwald" Date: Mon, 18 Feb 2013 15:55:02 +0000 Subject: [PATCH] mark hci packet handler as private (static) --- src/hci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hci.c b/src/hci.c index 6bcf661c9..c399130df 100644 --- a/src/hci.c +++ b/src/hci.c @@ -682,7 +682,7 @@ static void event_handler(uint8_t *packet, int size){ hci_run(); } -void packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){ +static void packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){ switch (packet_type) { case HCI_EVENT_PACKET: event_handler(packet, size);