mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-15 19:51:37 +00:00
dm: part: Add a cast to avoid a compiler warning
In part_amiga.c the name is unsigned but bcpl_strcpy() requires a signed pointer. Add a cast to fix the warning. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Stephen Warren <swarren@nvidia.com>
This commit is contained in:
parent
e35929e4a1
commit
95a6f9dfcb
1 changed files with 1 additions and 1 deletions
|
@ -304,7 +304,7 @@ int get_partition_info_amiga(struct blk_desc *dev_desc, int part,
|
|||
info->start = g->low_cyl * g->block_per_track * g->surfaces;
|
||||
info->size = (g->high_cyl - g->low_cyl + 1) * g->block_per_track * g->surfaces - 1;
|
||||
info->blksz = rdb.block_bytes;
|
||||
bcpl_strcpy(info->name, p->drive_name);
|
||||
bcpl_strcpy((char *)info->name, p->drive_name);
|
||||
|
||||
|
||||
disk_type = g->dos_type;
|
||||
|
|
Loading…
Add table
Reference in a new issue