diff options
| author | Alejandro Sior <aho@sior.be> | 2022-06-21 18:44:33 +0200 |
|---|---|---|
| committer | Alejandro Sior <aho@sior.be> | 2022-06-21 18:44:33 +0200 |
| commit | 8fbfda70d7ea101d5a15ab8157910af22cd51d07 (patch) | |
| tree | 1188b60c6e51f314d90974b81956bf18e2085474 /cmd/util.ha | |
| parent | 68b9c04241ef433f346279fbc153928bcbd360e9 (diff) | |
gpt.part: change a few stuff and working new
Diffstat (limited to 'cmd/util.ha')
| -rw-r--r-- | cmd/util.ha | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/util.ha b/cmd/util.ha index 7bbeca8..5b41830 100644 --- a/cmd/util.ha +++ b/cmd/util.ha @@ -42,12 +42,12 @@ export fn getgptentry(vol: *gpt::gpt, i: size) *gpt::entry = { const header = vol.primary.header; if (i >= header.entries_len) - fmt::fatalf("gpt: invalid entry index"); + fmt::fatalf("gpt.part: invalid entry index"); const entry = &vol.primary.entries[i]; if (entry.lba_begin == 0 && entry.lba_end == 0) - fmt::fatalf("gpt: entry {} is not allocated", i); + fmt::fatalf("gpt.part: entry {} is not allocated", i); return entry; }; |
