mirror of
https://github.com/aaru-dps/fstester.git
synced 2025-12-16 19:24:39 +00:00
Do not use a DOS attribute macro when 0 suffices.
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], _A_NORMAL, &handle);
|
||||
rc = _dos_creatnew(filenames[pos], 0, &handle);
|
||||
|
||||
if(!rc)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user