From 2cc86942716dac7d123a22851d2faa7ccca5c6ca Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Mon, 13 Jan 2003 00:50:37 +0000 Subject: [PATCH] Fixed UINT8/PUINT8. svn path=/trunk/; revision=3994 --- reactos/include/ntos/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/include/ntos/types.h b/reactos/include/ntos/types.h index 999a271051b..3efeef39e20 100644 --- a/reactos/include/ntos/types.h +++ b/reactos/include/ntos/types.h @@ -26,7 +26,7 @@ typedef signed char INT8, *PINT8; typedef signed short INT16, *PINT16; -typedef unsigned short UINT8, *PUINT8; +typedef unsigned char UINT8, *PUINT8; typedef unsigned short UINT16, *PUINT16;