mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH master] commands: bthread: fix format specifier for ulong
Date: Wed, 28 May 2025 07:57:51 +0200	[thread overview]
Message-ID: <20250528055751.1368503-1-a.fatoum@pengutronix.de> (raw)

Adding __printf to the bthread_run definition in the follow up commit
will make it evident that we are using a wrong type for a %u format
specifier.

Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
To avoid intermittent breakage, please apply before:
https://lore.barebox.org/barebox/20250527201359.889550-1-a.fatoum@pengutronix.de/T/#t
---
 commands/bthread.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commands/bthread.c b/commands/bthread.c
index 7a16c6713da5..f3b3e517ebf2 100644
--- a/commands/bthread.c
+++ b/commands/bthread.c
@@ -106,7 +106,7 @@ static void bthread_spawner(void *_spawner_arg)
 		arg = malloc(sizeof(*arg));
 		arg->in = i;
 		bthread[i] = bthread_run(bthread_printer, arg,
-					 "%s-bthread%u", bthread_name(current), i+1);
+					 "%s-bthread%lu", bthread_name(current), i+1);
 		if (!bthread[i]) {
 			ret = -ENOMEM;
 			goto cleanup;
-- 
2.39.5




             reply	other threads:[~2025-05-28  5:58 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-28  5:57 Ahmad Fatoum [this message]
2025-06-02 11:45 ` Sascha Hauer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250528055751.1368503-1-a.fatoum@pengutronix.de \
    --to=a.fatoum@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox