summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2016-01-03 18:52:42 -0300
committerJuan Linietsky <reduzio@gmail.com>2016-01-03 18:52:42 -0300
commit908f75c23fdd285523aeae3631b654f9b49c7b59 (patch)
tree853cad7c64f19cbf9976b076c777b070ac6c838d /drivers
parente8fbf39f886b2b5dbf5e14f07cd1dbefe8d48bf4 (diff)
having active items is pointless in input map
Diffstat (limited to 'drivers')
-rw-r--r--drivers/unix/semaphore_posix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/semaphore_posix.cpp b/drivers/unix/semaphore_posix.cpp
index f1f50b0381..3ae94ae5d9 100644
--- a/drivers/unix/semaphore_posix.cpp
+++ b/drivers/unix/semaphore_posix.cpp
@@ -42,7 +42,7 @@ Error SemaphorePosix::wait() {
errno=0;
continue;
} else {
-perror("sem waiting");
+ perror("sem waiting");
return ERR_BUSY;
}
}