From 82d96837dbe96ddade8ade60393ce3b537ce5cde Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Fri, 13 Mar 2026 01:51:21 +0000 Subject: [PATCH] boot: fix typo in function name Follow-up for dde03dd2a843b05d65885ce1242e43c8cabb9924 --- src/boot/splash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/boot/splash.c b/src/boot/splash.c index 451909eb4ca..86d4238eb16 100644 --- a/src/boot/splash.c +++ b/src/boot/splash.c @@ -127,7 +127,7 @@ static EFI_STATUS bmp_parse_header( } enum Channels { R, G, B, A, _CHANNELS_MAX }; -static void read_channel_maks( +static void read_channel_mask( const struct bmp_dib *dib, uint32_t channel_mask[static _CHANNELS_MAX], uint8_t channel_shift[static _CHANNELS_MAX], @@ -187,7 +187,7 @@ static EFI_STATUS bmp_to_blt( uint32_t channel_mask[_CHANNELS_MAX]; uint8_t channel_shift[_CHANNELS_MAX], channel_scale[_CHANNELS_MAX]; - read_channel_maks(dib, channel_mask, channel_shift, channel_scale); + read_channel_mask(dib, channel_mask, channel_shift, channel_scale); /* transform and copy pixels */ in = pixmap; -- 2.47.3