diff options
author | Jan Janssen <medhefgo@web.de> | 2022-06-05 15:08:07 +0200 |
---|---|---|
committer | Jan Janssen <medhefgo@web.de> | 2023-01-18 17:47:57 +0100 |
commit | 2f3c3b0bee5534f2338439f04b0aa517479f8b76 (patch) | |
tree | 14186d285499c56655166d109cd37b22400e9932 /src/boot/efi/cpio.c | |
parent | tree-wide: Use __func__ in asserts (diff) | |
download | systemd-2f3c3b0bee5534f2338439f04b0aa517479f8b76.tar.xz systemd-2f3c3b0bee5534f2338439f04b0aa517479f8b76.zip |
boot: Drop use of xpool_print/SPrint
Diffstat (limited to 'src/boot/efi/cpio.c')
-rw-r--r-- | src/boot/efi/cpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/efi/cpio.c b/src/boot/efi/cpio.c index 7c29beb759..9c33e33e9c 100644 --- a/src/boot/efi/cpio.c +++ b/src/boot/efi/cpio.c @@ -318,7 +318,7 @@ static char16_t *get_dropin_dir(const EFI_DEVICE_PATH *file_path) { return NULL; convert_efi_path(file_path_str); - return xpool_print(u"%s.extra.d", file_path_str); + return xasprintf("%ls.extra.d", file_path_str); } EFI_STATUS pack_cpio( |