diff options
author | Jeff Rizzo <riz@tastylime.net> | 2021-01-25 12:50:05 -0800 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2021-01-30 00:31:07 -0500 |
commit | 4f040fecdf1f653dc48cae3e051980067103f712 (patch) | |
tree | 091620d99b69274ae73de7333e4534954a350db4 /app/src | |
parent | 40694a09695d43006242ed0966387c3aee4e4c32 (diff) |
Add a missing log_strdup()
Diffstat (limited to 'app/src')
-rw-r--r-- | app/src/ble.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/ble.c b/app/src/ble.c index e8d2c42..c51391c 100644 --- a/app/src/ble.c +++ b/app/src/ble.c @@ -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 = { |