ntdll: Silence a noisy error.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2020-07-10 07:55:28 +02:00
parent 18ae539c91
commit a2e77268f2
1 changed files with 1 additions and 1 deletions

View File

@ -806,7 +806,7 @@ BOOL get_thread_times(int unix_pid, int unix_tid, LARGE_INTEGER *kernel_time, LA
sprintf( buf, "/proc/%u/task/%u/stat", unix_pid, unix_tid );
if (!(f = fopen( buf, "r" )))
{
ERR("Failed to open %s: %s\n", buf, strerror(errno));
WARN("Failed to open %s: %s\n", buf, strerror(errno));
return FALSE;
}