From 2b65942fc72cb18a53cd86f59fca9ea55054065c Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Thu, 14 May 2015 12:54:16 +0200 Subject: [PATCH] add missing format specifier --- src/hci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hci.c b/src/hci.c index 8a346b7f8..a0e551521 100644 --- a/src/hci.c +++ b/src/hci.c @@ -354,7 +354,7 @@ int hci_number_free_sco_slots_for_handle(hci_con_handle_t handle){ num_sco_packets_sent += connection->num_sco_packets_sent; } if (num_sco_packets_sent > hci_stack->sco_packets_total_num){ - log_info("hci_number_free_sco_slots_for_handle: outgoing packets (%u) > total packets ()", num_sco_packets_sent, hci_stack->sco_packets_total_num); + log_info("hci_number_free_sco_slots_for_handle: outgoing packets (%u) > total packets (%u)", num_sco_packets_sent, hci_stack->sco_packets_total_num); return 0; } return hci_stack->sco_packets_total_num - num_sco_packets_sent;