Fix spurious parameters in OS/2 calls.

This commit is contained in:
2021-04-05 21:52:22 +01:00
parent 7626ea03f8
commit ce924f06d4
2 changed files with 4 additions and 4 deletions

View File

@@ -275,7 +275,7 @@ void Fragmentation(const char* path, size_t clusterSize)
}
log_write("\tDeleting \"TWO2\".\n");
rc = __os2_delete((PSZ) "TWO2", 0);
rc = __os2_delete((PSZ) "TWO2");
log_write("\tFile name = \"%s\", size = %d, rc = %d, wRc = %d, cRc = %d\n", "TWO3", twoCluster, rc, wRc, cRc);
@@ -300,9 +300,9 @@ void Fragmentation(const char* path, size_t clusterSize)
}
log_write("\tDeleting \"TWO1\".\n");
rc = __os2_delete((PSZ) "TWO1", 0);
rc = __os2_delete((PSZ) "TWO1");
log_write("\tDeleting \"TWO3\".\n");
rc = __os2_delete((PSZ) "TWO3", 0);
rc = __os2_delete((PSZ) "TWO3");
log_write("\tFile name = \"%s\", size = %d, rc = %d, wRc = %d, cRc = %d\n",
"FRAGTHRQ",

View File

@@ -79,7 +79,7 @@ void Timestamps(const char* path)
return;
}
rc = __os2_mkdir("TIMES", 0);
rc = __os2_mkdir("TIMES");
if(rc)
{