aboutsummaryrefslogtreecommitdiff
path: root/libc/bionic/sched_getaffinity.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-10-15 16:49:49 -0700
committerElliott Hughes <enh@google.com>2013-10-15 16:49:49 -0700
commit0cfc95e0106acf6e3bff35e28e9addc76b3e0aaa (patch)
treea1702ac31cdc6a6851585f74d2cf0ddd8066f895 /libc/bionic/sched_getaffinity.cpp
parentdc9d8d050a43e1cd32f1337e79187124bb15d938 (diff)
Fix indentation in sched_getaffinity.
Change-Id: I966852149a0255ca132cd7a15f135a875ce400d0
Diffstat (limited to 'libc/bionic/sched_getaffinity.cpp')
-rw-r--r--libc/bionic/sched_getaffinity.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/bionic/sched_getaffinity.cpp b/libc/bionic/sched_getaffinity.cpp
index 26f22b110..0c869e4a5 100644
--- a/libc/bionic/sched_getaffinity.cpp
+++ b/libc/bionic/sched_getaffinity.cpp
@@ -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.