mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
Remove stray debug printf in gpt.c
This commit is contained in:
parent
60dbc7c9d7
commit
42fd4f73cf
1 changed files with 0 additions and 1 deletions
|
@ -79,7 +79,6 @@ int gpt_iterate_through_entries(FILE *disk, size_t sector_size, gpt_entry_iterat
|
||||||
|
|
||||||
/* Iterate through the entries. */
|
/* Iterate through the entries. */
|
||||||
for (uint32_t i = 0; i < hdr.entry_count; i++) {
|
for (uint32_t i = 0; i < hdr.entry_count; i++) {
|
||||||
printf("%lu/%lu\n", i, hdr.entry_count);
|
|
||||||
if (fread(&entry, sizeof(efi_entry_t), 1, disk) == 0) {
|
if (fread(&entry, sizeof(efi_entry_t), 1, disk) == 0) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue