Skip to content

Commit dab2134

Browse files
committed
fd_nonblock: Use boolean
1 parent 8a4bce4 commit dab2134

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/netlog/netlog-network.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ int manager_open_network_socket(Manager *m) {
239239
return r;
240240
}
241241

242-
r = fd_nonblock(m->socket, 1);
242+
r = fd_nonblock(m->socket, true);
243243
if (r < 0)
244244
goto fail;
245245

0 commit comments

Comments
 (0)