summaryrefslogtreecommitdiff
path: root/src/boot/efi/splash.h
diff options
context:
space:
mode:
authorJan Janssen <medhefgo@web.de>2022-12-09 11:13:09 +0100
committerJan Janssen <medhefgo@web.de>2023-01-25 15:22:41 +0100
commitdede50a715676d4ce3ebc9f958a8e3d65e09ce6c (patch)
tree7122491030129703c8313e958b0ac5f38fb7a1db /src/boot/efi/splash.h
parentf2592ef0e113aef0e8e7141cab2b17521760b064 (diff)
downloadsystemd-dede50a715676d4ce3ebc9f958a8e3d65e09ce6c.tar.gz
boot: Replace UINTN with size_t
No changes in behavior.
Diffstat (limited to 'src/boot/efi/splash.h')
-rw-r--r--src/boot/efi/splash.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/boot/efi/splash.h b/src/boot/efi/splash.h
index 2e502e5c36..bb49740ab2 100644
--- a/src/boot/efi/splash.h
+++ b/src/boot/efi/splash.h
@@ -2,5 +2,6 @@
#pragma once
#include <efi.h>
+#include <stddef.h>
-EFI_STATUS graphics_splash(const uint8_t *content, UINTN len);
+EFI_STATUS graphics_splash(const uint8_t *content, size_t len);