summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-10-22 16:11:26 -0400
committerAdam <Adam@anope.org>2011-10-22 16:11:26 -0400
commitd0513d6506ce34b57874ad265daf38ca67878aa0 (patch)
tree0707dcfba240b8ce5727fed96fcb8876cb7b58cb /cmake
parentf4a0bdd54d80e740026b05c63ada4e71650a1959 (diff)
A few minor fixups
Diffstat (limited to 'cmake')
-rw-r--r--cmake/eventfd_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/eventfd_test.cpp b/cmake/eventfd_test.cpp
index 8abd9c381..ab45b653f 100644
--- a/cmake/eventfd_test.cpp
+++ b/cmake/eventfd_test.cpp
@@ -3,6 +3,6 @@
int main()
{
int i = eventfd(0, EFD_NONBLOCK);
- return i > 0 ? 1 : 0;
+ return i >= 0 ? 1 : 0;
}