Update file_del.c

This commit is contained in:
DavidXanatos 2022-06-18 13:04:02 +02:00
parent a6d68c4103
commit d2b6d20e89
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ _FX VOID File_SavePathNode_internal(HANDLE hPathsFile, LIST* parent, WCHAR* Path
}
// write line ending
NtWriteFile(hPathsFile, NULL, NULL, NULL, &IoStatusBlock, CrLf, sizeof(CrLf) - sizeof(WCHAR), NULL, NULL);
NtWriteFile(hPathsFile, NULL, NULL, NULL, &IoStatusBlock, (void*)CrLf, sizeof(CrLf) - sizeof(WCHAR), NULL, NULL);
}
File_SavePathNode_internal(hPathsFile, &child->items, Path, Path_Len, SetFlags | child->flags);