* Patch
@ 2024-06-18 16:19 Solegaiter
2024-06-18 16:40 ` Patch bluez.test.bot
0 siblings, 1 reply; 2+ messages in thread
From: Solegaiter @ 2024-06-18 16:19 UTC (permalink / raw)
To: linux-bluetooth
[-- Attachment #1.1: Type: text/plain, Size: 70 bytes --]
This patches a bug that made it impossible to compile on gentoo musl.
[-- Attachment #1.2: Type: text/html, Size: 99 bytes --]
[-- Attachment #2: parche.patch --]
[-- Type: text/x-patch, Size: 486 bytes --]
diff --git a/client/player.c b/client/player.c
index 25fd837..47b5d0a 100644
--- a/client/player.c
+++ b/client/player.c
@@ -5142,7 +5142,7 @@ static void cmd_send_transport(int argc, char *argv[])
struct sockaddr_iso addr;
socklen_t optlen;
- err = getpeername(transport->sk, &addr, &optlen);
+ err = getpeername(transport->sk, (struct sockaddr *)&addr, &optlen);
if (!err) {
if (!(bacmp(&addr.iso_bdaddr, BDADDR_ANY)))
err = transport_send(transport, fd,
^ permalink raw reply related [flat|nested] 2+ messages in thread
* RE: Patch
2024-06-18 16:19 Patch Solegaiter
@ 2024-06-18 16:40 ` bluez.test.bot
0 siblings, 0 replies; 2+ messages in thread
From: bluez.test.bot @ 2024-06-18 16:40 UTC (permalink / raw)
To: linux-bluetooth, meartzheast877
[-- Attachment #1: Type: text/plain, Size: 533 bytes --]
This is an automated email and please do not reply to this email.
Dear Submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.
----- Output -----
error: patch failed: client/player.c:5142
error: client/player.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch
Please resolve the issue and submit the patches again.
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-06-18 16:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-18 16:19 Patch Solegaiter
2024-06-18 16:40 ` Patch bluez.test.bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).