linux/types.h: fix typo unchar
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sat, 7 Dec 2019 23:22:01 +0000 (00:22 +0100)
committerTom 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

index 51cb284bb8834510f2ad5d8b53ba19c74fcd1c4a..bd912bcb42fd2bc54619828f21f93dac95d3984f 100644 (file)
@@ -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;