am 14e7482c: am d16391bb: Merge "Fix indentation in sched_getaffinity."

* commit '14e7482c556820d8ad3b77f025dfc465d55c7262':
  Fix indentation in sched_getaffinity.
This commit is contained in:
Elliott Hughes 2013-10-15 16:58:19 -07:00 committed by Android Git Automerger
commit b01ebe6d4e

View File

@ -35,7 +35,7 @@ extern "C" int __sched_getaffinity(pid_t, size_t, cpu_set_t*);
int sched_getaffinity(pid_t pid, size_t set_size, cpu_set_t* set) {
int rc = __sched_getaffinity(pid, set_size, set);
if (rc == -1) {
return -1;
return -1;
}
// Clear any bytes the kernel didn't touch.