Do not use a DOS attribute macro when 0 suffices.

This commit is contained in:
2021-04-06 04:12:55 +01:00
parent 1ff94143a2
commit beb135b03c
5 changed files with 14 additions and 14 deletions

View File

@@ -65,7 +65,7 @@ void Filenames(const char* path)
for(pos = 0; filenames[pos]; pos++)
{
rc = _dos_creatnew(filenames[pos], _A_NORMAL, &handle);
rc = _dos_creatnew(filenames[pos], 0, &handle);
if(!rc)
{