14 lines
462 B
Diff
14 lines
462 B
Diff
diff --git a/drivers/accessibility/speakup/utils.h b/drivers/accessibility/speakup/utils.h
|
|
index 4bf2ee8ac246..4ce9a12f7664 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) {
|