summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2019-12-07 23:22:01 (GMT)
committerTom Rini <trini@konsulko.com>2019-12-09 15:35:30 (GMT)
commit37db55b7e9dbbc25e4179ec5b7be8e286e47a44d (patch)
tree592325f6f7359266a194293f0be60851b5a0180d
parent2f02845817bec0dd0f89eb0d829b17b40d005afc (diff)
downloadu-boot-37db55b7e9dbbc25e4179ec5b7be8e286e47a44d.zip
u-boot-37db55b7e9dbbc25e4179ec5b7be8e286e47a44d.tar.gz
u-boot-37db55b7e9dbbc25e4179ec5b7be8e286e47a44d.tar.bz2
linux/types.h: fix typo unchar
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>
-rw-r--r--include/linux/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/types.h b/include/linux/types.h
index 51cb284..bd912bc 100644
--- 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 unchar;
+typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned int uint;
typedef unsigned long ulong;