diff options
Diffstat (limited to 'disk/part_efi.c')
| -rw-r--r-- | disk/part_efi.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/disk/part_efi.c b/disk/part_efi.c index 626f022f9..1b04c27ce 100644 --- a/disk/part_efi.c +++ b/disk/part_efi.c @@ -169,7 +169,7 @@ int get_partition_info_efi(block_dev_desc_t * dev_desc, int part,  		     - info->start;  	info->blksz = GPT_BLOCK_SIZE; -	sprintf((char *)info->name, "%s%d\n", GPT_ENTRY_NAME, part); +	sprintf((char *)info->name, "%s%d", GPT_ENTRY_NAME, part);  	sprintf((char *)info->type, "U-Boot");  	debug("%s: start 0x%lX, size 0x%lX, name %s", __FUNCTION__, |