diff options
author | Jan Janssen <medhefgo@web.de> | 2022-06-24 11:37:15 +0200 |
---|---|---|
committer | Jan Janssen <medhefgo@web.de> | 2022-06-27 12:26:21 +0200 |
commit | 3639d1b02174449343bd610c274d9d820c446908 (patch) | |
tree | baadee990451c506f4e715761b5dc2f8a11b4d35 /src/boot/efi/bcd.h | |
parent | db4122d13067543ab7c952920d97ab79a0225a90 (diff) | |
download | systemd-3639d1b02174449343bd610c274d9d820c446908.tar.gz |
boot: Use char16_t
This also switches to _cleanup_free_. Otherwise no code changes.
Diffstat (limited to 'src/boot/efi/bcd.h')
-rw-r--r-- | src/boot/efi/bcd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/boot/efi/bcd.h b/src/boot/efi/bcd.h index 63be54566a..dd666e09e7 100644 --- a/src/boot/efi/bcd.h +++ b/src/boot/efi/bcd.h @@ -2,5 +2,6 @@ #pragma once #include <efi.h> +#include <uchar.h> -CHAR16 *get_bcd_title(uint8_t *bcd, UINTN bcd_len); +char16_t *get_bcd_title(uint8_t *bcd, UINTN bcd_len); |