mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] speakup: remove usage of non-standard u_char
@ 2022-10-11  0:17 Yureka
  2022-10-11  0:24 ` Samuel Thibault
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Yureka @ 2022-10-11  0:17 UTC (permalink / raw)
  To: samuel.thibault; +Cc: w.d.hubbs, chris, chris, gregkh, speakup, linux-kernel

From: Yureka Lilian <yuka@yuka.dev>

This code is included in the build tools makemapdata and genmap, and it
expects that libc exposes a definition of u_char. But u_char is not
defined in either C or POSIX standards, and some systems don't have it.
Namely this breaks the build on hosts using musl libc, because musl only
exposes u_char if _GNU_SOURCE is defined.

Signed-off-by: Yureka Lilian <yuka@yuka.dev>
---
 drivers/accessibility/speakup/utils.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/accessibility/speakup/utils.h b/drivers/accessibility/speakup/utils.h
index 4bf2ee8ac..4ce9a12f7 100644
--- a/drivers/accessibility/speakup/utils.h
+++ b/drivers/accessibility/speakup/utils.h
@@ -54,7 +54,7 @@ static inline int oops(const char *msg, const char *info)
 
 static inline struct st_key *hash_name(char *name)
 {
-   u_char *pn = (u_char *)name;
+   unsigned char *pn = (unsigned char *)name;
    int hash = 0;
 
    while (*pn) {
-- 
2.37.3

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

end of thread, other threads:[~2022-11-09 14:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-11  0:17 [PATCH] speakup: remove usage of non-standard u_char Yureka
2022-10-11  0:24 ` Samuel Thibault
     [not found] ` <Y0UKhAzH+RSGyhKi@kroah.com>
2022-10-15 12:34   ` Yureka
2022-11-09 14:20 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®