aboutsummaryrefslogtreecommitdiffhomepage
path: root/wutil.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-05-05 02:33:17 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-05-05 02:33:17 -0700
commit2da81b0ae789c91c196f0ab6f154bf462bafec2d (patch)
tree4155ad8990697991e10caf0e972737c5eaac3de4 /wutil.cpp
parentd4c881791fb160b4b2cdc076313da00f29577e24 (diff)
Formatting and style updates
Diffstat (limited to 'wutil.cpp')
-rw-r--r--wutil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wutil.cpp b/wutil.cpp
index 03b55c89..fa9ebc40 100644
--- a/wutil.cpp
+++ b/wutil.cpp
@@ -294,7 +294,7 @@ int make_fd_nonblocking(int fd)
{
int flags = fcntl(fd, F_GETFL, 0);
int err = 0;
- if (! (flags & O_NONBLOCK))
+ if (!(flags & O_NONBLOCK))
{
err = fcntl(fd, F_SETFL, flags | O_NONBLOCK);
}