Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
d0k3 committed Nov 28, 2022
1 parent 3710ed9 commit a23ba0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arm9/source/utils/nandutil.c
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ u32 ValidateNandDump(const char* path) {

// check TWL & CTR FAT partitions
for (u32 i = 0; i < 2; i++) {
char* section_type = (i) ? "CTR" : "MBR";
char* section_type = (i) ? "CTR" : "TWL";
if (i == 0) { // check TWL first, then CTR
if (GetNandNcsdPartitionInfo(&info, NP_TYPE_STD, NP_SUBTYPE_TWL, 0, &ncsd) != 0) return 1;
} else if ((GetNandNcsdPartitionInfo(&info, NP_TYPE_STD, NP_SUBTYPE_CTR, 0, &ncsd) != 0) &&
Expand Down

0 comments on commit a23ba0e

Please sign in to comment.