From 18e622d43e053330c4d6f002fb4e9ddae5812574 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 28 May 2012 22:03:41 +0000 Subject: [PATCH] unix: fix indentation in sunos.c --- src/unix/sunos.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/unix/sunos.c b/src/unix/sunos.c index f341297b..3cf214c0 100644 --- a/src/unix/sunos.c +++ b/src/unix/sunos.c @@ -180,10 +180,10 @@ int uv_fs_event_init(uv_loop_t* loop, /* We don't support any flags yet. */ assert(!flags); if (loop->fs_fd == -1) { - if ((portfd = port_create()) == -1) { - uv__set_sys_error(loop, errno); - return -1; - } + if ((portfd = port_create()) == -1) { + uv__set_sys_error(loop, errno); + return -1; + } loop->fs_fd = portfd; first_run = 1; }