ntdll: Silence a noisy error.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
18ae539c91
commit
a2e77268f2
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue