From d33a0f75a5c0c584fbb7cc0076da36d494f39494 Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 22 Nov 2012 00:50:33 -0500 Subject: Pretty large coding style cleanup, in source doc cleanup, and allow protocol mods to depend on each other --- src/socketengines/pipeengine_eventfd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/socketengines') diff --git a/src/socketengines/pipeengine_eventfd.cpp b/src/socketengines/pipeengine_eventfd.cpp index 19433d1c8..61fddd0af 100644 --- a/src/socketengines/pipeengine_eventfd.cpp +++ b/src/socketengines/pipeengine_eventfd.cpp @@ -16,7 +16,7 @@ Pipe::Pipe() : Socket(eventfd(0, EFD_NONBLOCK)) { - if (this->Sock < 0) + if (this->sock < 0) throw CoreException("Could not create pipe: " + Anope::LastError()); } -- cgit