schtasks: Fix a typo in FIXME() message.

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Andrey Gusev 2021-12-21 16:40:48 +02:00 committed by Alexandre Julliard
parent 6b78bcff92
commit 7314b97687
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ static BSTR read_file_to_bstr(const WCHAR *file_name)
r = ReadFile(file, data, file_size.QuadPart, &read_size, NULL);
CloseHandle(file);
if (!r) {
FIXME("Read filed\n");
FIXME("Read failed\n");
HeapFree(GetProcessHeap(), 0, data);
return NULL;
}