From: Jan Janssen Date: Tue, 12 Jul 2022 07:46:44 +0000 (+0200) Subject: boot: Use int instead of INTN X-Git-Tag: v252-rc1~675^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f6a5d9a656d63a05be8c1813a13b8e4f7f38659;p=thirdparty%2Fsystemd.git boot: Use int instead of INTN --- 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) {