1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-14 15:46:31 +00:00

PDP11, VAX: Fix failure to create differencing VHDs when the parent VHD is larger than 2GB.

This commit is contained in:
Mark Pizzolato 2014-03-16 08:33:15 -07:00
parent 98ac7af6fa
commit b2134a01cf

View File

@ -2670,7 +2670,7 @@ if (!File) {
goto Return_Cleanup;
}
if (ModifiedTimeStamp) {
if (stat (szVHDPath, &statb)) {
if (fstat (fileno (File), &statb)) {
Return = errno;
goto Return_Cleanup;
}