Cast filename to make some DOS compiler happy.

This commit is contained in:
2021-04-11 00:30:34 +01:00
parent 948526c568
commit b8e277b363

View File

@@ -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)
{