mirror of
https://github.com/Decscots/Lockpick_RCM
synced 2024-11-15 02:16:34 +00:00
nx_emmc: Fix nested loop with same variable
This commit is contained in:
parent
a5bb071927
commit
5f100fef8a
1 changed files with 2 additions and 2 deletions
|
@ -37,8 +37,8 @@ void nx_emmc_gpt_parse(link_t *gpt, sdmmc_storage_t *storage)
|
|||
part->attrs = ent->attrs;
|
||||
|
||||
//HACK
|
||||
for (u32 i = 0; i < 36; i++)
|
||||
part->name[i] = ent->name[i];
|
||||
for (u32 j = 0; j < 36; j++)
|
||||
part->name[j] = ent->name[j];
|
||||
part->name[36] = 0;
|
||||
|
||||
list_append(gpt, &part->link);
|
||||
|
|
Loading…
Reference in a new issue