mirror of
https://xff.cz/git/u-boot/
synced 2025-09-27 13:31:16 +02:00
efi: Use 16-bit unicode strings
At present we use wide characters for unicode but this is not necessary. Change the code to use the 'u' literal instead. This helps to fix build warnings for sandbox on rpi. Signed-off-by: Simon Glass <sjg@chromium.org> Suggested-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
@@ -31,7 +31,7 @@ static struct {
|
||||
DEVICE_PATH_SUB_TYPE_FILE_PATH,
|
||||
sizeof(dp.dp) + sizeof(dp.filename),
|
||||
},
|
||||
L"bug.efi",
|
||||
u"bug.efi",
|
||||
{
|
||||
DEVICE_PATH_TYPE_END,
|
||||
DEVICE_PATH_SUB_TYPE_END,
|
||||
|
Reference in New Issue
Block a user