From 177fe6a3ac4f3cfcadbad30a4767d3d875dad29d Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Tue, 25 Oct 2022 22:13:39 -0300 Subject: [PATCH] VISO: Fix mistake in bad mtime logging --- src/cdrom/cdrom_image_viso.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cdrom/cdrom_image_viso.c b/src/cdrom/cdrom_image_viso.c index ab9cf658a..9cac65b70 100644 --- a/src/cdrom/cdrom_image_viso.c +++ b/src/cdrom/cdrom_image_viso.c @@ -476,7 +476,7 @@ viso_fill_dir_record(uint8_t *data, viso_entry_t *entry, int format, int type) VISO_LBE_32(p, entry->stats.st_size); /* size (filled in later if this is a directory) */ #ifdef _WIN32 if (entry->stats.st_mtime < 0) - pclog("VISO: Warning: Windows returned st_mtime %lld on file [%s]\n", (long long) entry->stats.st_mtime); + pclog("VISO: Warning: Windows returned st_mtime %lld on file [%s]\n", (long long) entry->stats.st_mtime, entry->path); #endif p += viso_fill_time(p, entry->stats.st_mtime, format, 0); /* time */ *p++ = S_ISDIR(entry->stats.st_mode) ? 0x02 : 0x00; /* flags */