mirror of
https://github.com/aaru-dps/fstester.git
synced 2025-12-16 19:24:39 +00:00
Cast filename to make some DOS compiler happy.
This commit is contained in:
@@ -65,7 +65,7 @@ void Filenames(const char* path)
|
||||
|
||||
for(pos = 0; filenames[pos]; pos++)
|
||||
{
|
||||
rc = _dos_creatnew(filenames[pos], 0, &handle);
|
||||
rc = _dos_creatnew((char*)filenames[pos], 0, &handle);
|
||||
|
||||
if(!rc)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user