aboutsummaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@proton.me>2024-07-27 00:40:24 -0600
committerLeonardo Hernández Hernández <leohdz172@proton.me>2024-07-27 00:41:39 -0600
commit986beef5be32a2bead22ca85d19f4d6d7e5c0ce1 (patch)
tree070f69205baa5f11af8de8ac62cf63f820e1be06 /util.c
parent487abc28ba6879bf3a2492ef766f0420ae6f904b (diff)
downloaddwl-986beef5be32a2bead22ca85d19f4d6d7e5c0ce1.tar.gz
replace spaces with tabs
Fixes: 71f11e6cf63289d51f152469a0da81a85fe2608c
Diffstat (limited to 'util.c')
-rw-r--r--util.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/util.c b/util.c
index 51130af..b925987 100644
--- a/util.c
+++ b/util.c
@@ -38,14 +38,14 @@ ecalloc(size_t nmemb, size_t size)
int
fd_set_nonblock(int fd) {
int flags = fcntl(fd, F_GETFL);
- if (flags < 0) {
+ if (flags < 0) {
perror("fcntl(F_GETFL):");
- return -1;
- }
- if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) < 0) {
+ return -1;
+ }
+ if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) < 0) {
perror("fcntl(F_SETFL):");
return -1;
- }
+ }
return 0;
}