hv: use uint8_t replace "unsigned char"

Since it's typedef in "include/lib/types.h"

Tracked-On: #861
Signed-off-by: Li, Fei1 <fei1.li@intel.com>
This commit is contained in:
Li, Fei1
2018-12-08 00:01:04 +08:00
committed by wenlingz
parent a1435f332b
commit 8bafde9942
13 changed files with 95 additions and 95 deletions

View File

@@ -280,7 +280,7 @@ out:
static inline EFI_STATUS isspace(CHAR8 ch)
{
return ((unsigned char)ch <= ' ');
return ((uint8_t)ch <= ' ');
}
/**