From: Luca Boccassi Date: Fri, 13 Mar 2026 01:51:21 +0000 (+0000) Subject: boot: fix typo in function name X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=82d96837dbe96ddade8ade60393ce3b537ce5cde;p=thirdparty%2Fsystemd.git boot: fix typo in function name Follow-up for dde03dd2a843b05d65885ce1242e43c8cabb9924 --- 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;