From a1f82f1020f949f07f2a57c34c6c61a42ca31b4b Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Thu, 3 Jul 2025 10:53:20 +0200 Subject: [PATCH] peripheral: Fix typo Found using codespell. --- peripheral/gatt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peripheral/gatt.c b/peripheral/gatt.c index ff1354cb4..2c5e037b9 100644 --- a/peripheral/gatt.c +++ b/peripheral/gatt.c @@ -105,7 +105,7 @@ static struct gatt_conn *gatt_conn_new(int fd) conn->att = bt_att_new(fd, false); if (!conn->att) { - fprintf(stderr, "Failed to initialze ATT transport layer\n"); + fprintf(stderr, "Failed to initialize ATT transport layer\n"); free(conn); return NULL; } -- 2.47.3