From 7a554bea17babc0fc63017879ecfbd988f450e25 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sat, 10 Jan 2026 11:46:55 +0200 Subject: [PATCH] Include HDF size in bytes in log --- od-win32/hardfile_win32.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/od-win32/hardfile_win32.cpp b/od-win32/hardfile_win32.cpp index ec3936db..323a4531 100644 --- a/od-win32/hardfile_win32.cpp +++ b/od-win32/hardfile_win32.cpp @@ -2292,8 +2292,8 @@ emptyreal: } } if (hfd->handle_valid || hfd->drive_empty) { - hfd_log (_T("HDF '%s' %p opened, size=%dK mode=%d empty=%d\n"), - name, hfd, (int)(hfd->physsize / 1024), hfd->handle_valid, hfd->drive_empty); + hfd_log (_T("HDF '%s' %p opened, size=%dK (0x%llx) mode=%d empty=%d\n"), + name, hfd, (int)(hfd->physsize / 1024), hfd->physsize, hfd->handle_valid, hfd->drive_empty); return 1; } end: -- 2.47.3