From 8fbfda70d7ea101d5a15ab8157910af22cd51d07 Mon Sep 17 00:00:00 2001 From: Alejandro Sior Date: Tue, 21 Jun 2022 18:44:33 +0200 Subject: gpt.part: change a few stuff and working new --- cmd/util.ha | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd/util.ha') 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; }; -- cgit v1.2.3