mirror of
https://github.com/aaru-dps/fstester.git
synced 2025-12-16 19:24:39 +00:00
Fix spurious parameters in OS/2 calls.
This commit is contained in:
@@ -275,7 +275,7 @@ void Fragmentation(const char* path, size_t clusterSize)
|
|||||||
}
|
}
|
||||||
|
|
||||||
log_write("\tDeleting \"TWO2\".\n");
|
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);
|
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");
|
log_write("\tDeleting \"TWO1\".\n");
|
||||||
rc = __os2_delete((PSZ) "TWO1", 0);
|
rc = __os2_delete((PSZ) "TWO1");
|
||||||
log_write("\tDeleting \"TWO3\".\n");
|
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",
|
log_write("\tFile name = \"%s\", size = %d, rc = %d, wRc = %d, cRc = %d\n",
|
||||||
"FRAGTHRQ",
|
"FRAGTHRQ",
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ void Timestamps(const char* path)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
rc = __os2_mkdir("TIMES", 0);
|
rc = __os2_mkdir("TIMES");
|
||||||
|
|
||||||
if(rc)
|
if(rc)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user