projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f02845
)
linux/types.h: fix typo unchar
author
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Sat, 7 Dec 2019 23:22:01 +0000
(
00:22
+0100)
committer
Tom Rini
<trini@konsulko.com>
Mon, 9 Dec 2019 15:35:30 +0000
(10:35 -0500)
unsigned char should be called uchar and not unchar.
This fixes a build error in lib/crypto/x509_cert_parser.c.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
include/linux/types.h
patch
|
blob
|
history
diff --git
a/include/linux/types.h
b/include/linux/types.h
index 51cb284bb8834510f2ad5d8b53ba19c74fcd1c4a..bd912bcb42fd2bc54619828f21f93dac95d3984f 100644
(file)
--- a/
include/linux/types.h
+++ b/
include/linux/types.h
@@
-85,7
+85,7
@@
typedef unsigned int u_int;
typedef unsigned long u_long;
/* sysv */
-typedef unsigned char u
n
char;
+typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned int uint;
typedef unsigned long ulong;