From: Heinrich Schuchardt Date: Sat, 7 Dec 2019 23:22:01 +0000 (+0100) Subject: linux/types.h: fix typo unchar X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=37db55b7e9db;p=u-boot.git 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 --- diff --git a/include/linux/types.h b/include/linux/types.h index 51cb284bb8..bd912bcb42 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;