boot: Use int instead of INTN

This commit is contained in:
Jan Janssen 2022-07-12 09:46:44 +02:00
parent 34938db5b3
commit 1f6a5d9a65
2 changed files with 4 additions and 4 deletions

View file

@ -429,7 +429,7 @@ static char16_t *update_timeout_efivar(uint32_t *t, bool inc) {
}
static bool unicode_supported(void) {
static INTN cache = -1;
static int cache = -1;
if (cache < 0)
/* Basic unicode box drawing support is mandated by the spec, but it does

View file

@ -241,7 +241,7 @@ void efivar_set_time_usec(const EFI_GUID *vendor, const char16_t *name, uint64_t
efivar_set(vendor, name, str, 0);
}
static INTN utf8_to_16(const char *stra, char16_t *c) {
static int utf8_to_16(const char *stra, char16_t *c) {
char16_t unichar;
UINTN len;
@ -309,7 +309,7 @@ char16_t *xstra_to_str(const char *stra) {
strlen = 0;
i = 0;
while (i < len) {
INTN utf8len;
int utf8len;
utf8len = utf8_to_16(stra + i, str + strlen);
if (utf8len <= 0) {
@ -340,7 +340,7 @@ char16_t *xstra_to_path(const char *stra) {
strlen = 1;
i = 0;
while (i < len) {
INTN utf8len;
int utf8len;
utf8len = utf8_to_16(stra + i, str + strlen);
if (utf8len <= 0) {