All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] client/btpclient: Fix missing errno.h include
@ 2026-08-07  6:13 Jinwang Li
  2026-08-07  8:25 ` [v1] " bluez.test.bot
  0 siblings, 1 reply; 2+ messages in thread
From: Jinwang Li @ 2026-08-07  6:13 UTC (permalink / raw)
  To: linux-bluetooth
  Cc: cheng.jiang, quic_chezhou, wei.deng, shuai.zhang, mengshi.wu,
	jinwang.li, xiuzhuo.shang

EINVAL is used in create_uuid() but errno.h was not included,
causing a build failure.

Signed-off-by: Jinwang Li <jinwang.li@oss.qualcomm.com>
---
 client/btpclient/gatt.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/client/btpclient/gatt.c b/client/btpclient/gatt.c
index d384b9c74..867bb6cf1 100644
--- a/client/btpclient/gatt.c
+++ b/client/btpclient/gatt.c
@@ -11,6 +11,7 @@
 #include <config.h>
 #endif
 
+#include <errno.h>
 #include <stdlib.h>
 
 #include <ell/ell.h>
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-08-07  8:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-07  6:13 [PATCH v1] client/btpclient: Fix missing errno.h include Jinwang Li
2026-08-07  8:25 ` [v1] " bluez.test.bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.