All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ v1] monitor: Fix build error
@ 2026-07-15 17:07 Luiz Augusto von Dentz
  2026-07-15 18:49 ` [BlueZ,v1] " bluez.test.bot
  0 siblings, 1 reply; 2+ messages in thread
From: Luiz Augusto von Dentz @ 2026-07-15 17:07 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This fixes the following error:

   36 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   37 |       __bos (__s), __fmt, __va_arg_pack ());
      |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
---
 monitor/packet.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/monitor/packet.c b/monitor/packet.c
index fb053e2b413f..82afef6011d2 100644
--- a/monitor/packet.c
+++ b/monitor/packet.c
@@ -2928,7 +2928,7 @@ static void print_features_subpage(uint8_t page, uint8_t subpages,
 					uint64_t *features,
 					const struct bitfield_data *table)
 {
-	int i, j;
+	uint8_t i, j;
 	char str[18];
 
 	for (i = 0; i < subpages; i++) {
-- 
2.54.0


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

end of thread, other threads:[~2026-07-15 18:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-15 17:07 [PATCH BlueZ v1] monitor: Fix build error Luiz Augusto von Dentz
2026-07-15 18:49 ` [BlueZ,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.