Browse Source

Add a missing log_strdup()

xmkb
Jeff Rizzo 3 years ago committed by Pete Johanson
parent
commit
4f040fecdf
  1. 2
      app/src/ble.c

2
app/src/ble.c

@ -429,7 +429,7 @@ static void le_param_updated(struct bt_conn *conn, uint16_t interval, uint16_t l @@ -429,7 +429,7 @@ static void le_param_updated(struct bt_conn *conn, uint16_t interval, uint16_t l
bt_addr_le_to_str(bt_conn_get_dst(conn), addr, sizeof(addr));
LOG_DBG("%s: interval %d latency %d timeout %d", addr, interval, latency, timeout);
LOG_DBG("%s: interval %d latency %d timeout %d", log_strdup(addr), interval, latency, timeout);
}
static struct bt_conn_cb conn_callbacks = {

Loading…
Cancel
Save