From dc994f001dcaa9a7a3a687c1f8c05201253690ac Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 27 Dec 2021 18:55:11 -0500 Subject: [PATCH] Mention units. --- Storage/Disk/DiskImage/Formats/IPF.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Storage/Disk/DiskImage/Formats/IPF.cpp b/Storage/Disk/DiskImage/Formats/IPF.cpp index e7a039700..47cb56246 100644 --- a/Storage/Disk/DiskImage/Formats/IPF.cpp +++ b/Storage/Disk/DiskImage/Formats/IPF.cpp @@ -255,12 +255,12 @@ std::shared_ptr IPF::get_track_at_position([[maybe_unused]] Track::Addres // TODO: write the gap. switch(type) { case Type::GapLength: - printf("Unhandled gap length %zu\n", length); + printf("Unhandled gap length %zu bytes\n", length); break; default: case Type::SampleLength: - printf("Unhandled sampled gap length %zu\n", length); + printf("Unhandled sampled gap length %zu bytes\n", length); file_.seek(long(length >> 3), SEEK_CUR); break; } @@ -282,7 +282,7 @@ std::shared_ptr IPF::get_track_at_position([[maybe_unused]] Track::Addres // TODO: write the data. switch(type) { default: - printf("Unhandled data type %d, length %zu\n", int(type), length); + printf("Unhandled data type %d, length %zu bits\n", int(type), length); file_.seek(long(length >> 3), SEEK_CUR); break; }