From 1f6a5d9a656d63a05be8c1813a13b8e4f7f38659 Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Tue, 12 Jul 2022 09:46:44 +0200 Subject: [PATCH] boot: Use int instead of INTN --- src/boot/efi/boot.c | 2 +- src/boot/efi/util.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/boot/efi/boot.c b/src/boot/efi/boot.c index c5a48a270d5..3587033dd32 100644 --- a/src/boot/efi/boot.c +++ b/src/boot/efi/boot.c @@ -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 diff --git a/src/boot/efi/util.c b/src/boot/efi/util.c index c5142467b24..44a75e1c324 100644 --- a/src/boot/efi/util.c +++ b/src/boot/efi/util.c @@ -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) {