diff options
author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-07-27 00:40:24 -0600 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-07-27 00:41:39 -0600 |
commit | 986beef5be32a2bead22ca85d19f4d6d7e5c0ce1 (patch) | |
tree | 070f69205baa5f11af8de8ac62cf63f820e1be06 | |
parent | 487abc28ba6879bf3a2492ef766f0420ae6f904b (diff) | |
download | dwl-986beef5be32a2bead22ca85d19f4d6d7e5c0ce1.tar.gz |
replace spaces with tabs
Fixes: 71f11e6cf63289d51f152469a0da81a85fe2608c
-rw-r--r-- | util.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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; } |