Commit a2e77268 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Silence a noisy error.

parent 18ae539c
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment