From afbc73fffbfe7b70326a10e65ee829dcf5397d6c Mon Sep 17 00:00:00 2001 From: Romein van Buren Date: Fri, 13 Jun 2025 13:01:25 +0200 Subject: [PATCH] Nicer debug output --- fmp/fmp_debug.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fmp/fmp_debug.go b/fmp/fmp_debug.go index b01106e..fa52b04 100644 --- a/fmp/fmp_debug.go +++ b/fmp/fmp_debug.go @@ -45,11 +45,11 @@ func (f *FmpFile) ToDebugFile(fname string) { } func (sect *FmpSector) String() string { - return fmt.Sprintf("", sect.ID, sect.Deleted, sect.Level, sect.PrevID, sect.NextID) + return fmt.Sprintf("", sect.ID, sect.Deleted, sect.Level, sect.PrevID, sect.NextID) } func (c *FmpChunk) String() string { - return fmt.Sprintf("", c.Type, c.Length) + return fmt.Sprintf("", c.Type, c.Length) } func (dict *FmpDict) string(parentPath string) string {