diff options
| author | Heinrich Schuchardt <[email protected]> | 2018-11-05 20:22:12 +0100 |
|---|---|---|
| committer | Alexander Graf <[email protected]> | 2018-12-02 21:59:37 +0100 |
| commit | 02c2f0298a0b53ae0b8636567265b8a612c598d1 (patch) | |
| tree | b9c4ad5dc1fc3db3d0cd33b9d1bb99170810136f /include | |
| parent | 83582419ea3653fdf3e5e5d0434f9ff5a8217149 (diff) | |
efi_loader: use u16* for UTF16 strings
We should be consistent in the types that we use to store Unicode strings.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Signed-off-by: Alexander Graf <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/efi_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index e58dd0581c9..aef77b6319d 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -965,7 +965,7 @@ struct efi_file_info { struct efi_time last_access_time; struct efi_time modification_time; u64 attribute; - s16 file_name[0]; + u16 file_name[0]; }; struct efi_file_system_info { |
