Commit 63cd581d authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #9451 from alalek:fix_warning_self_assign

parents c48807c3 8285924c
......@@ -71,7 +71,7 @@ static void setCurrentThreadAffinityMask(int mask)
if (syscallres)
{
int err=errno;
err=err;//to avoid warnings about unused variables
CV_UNUSED(err);
LOGE("Error in the syscall setaffinity: mask=%d=0x%x err=%d=0x%x", mask, mask, err, err);
}
}
......
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