summaryrefslogtreecommitdiff
path: root/jet.cpp
diff options
context:
space:
mode:
authorJuan Manuel Tomás <jtomas1815@gmail.com>2020-07-10 21:54:04 -0300
committerJuan Manuel Tomás <jtomas1815@gmail.com>2020-07-10 21:54:04 -0300
commitc4c5be557abb30166dbc49770a0151671ab1bf07 (patch)
treea642972e425533e91e3d46eb6fb71d2bc276f076 /jet.cpp
parent5c8326ae953eee1cd36711a7769cff624f312864 (diff)
downloadjet-c4c5be557abb30166dbc49770a0151671ab1bf07.tar.gz
jet-c4c5be557abb30166dbc49770a0151671ab1bf07.zip
Implement file writing using the write syscall
Diffstat (limited to 'jet.cpp')
-rw-r--r--jet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/jet.cpp b/jet.cpp
index 1a2e9c9..3d45c75 100644
--- a/jet.cpp
+++ b/jet.cpp
@@ -64,7 +64,7 @@ int main() {
epoll_event events[MAX_EVENTS];
Client *clients[1024] = {};
- for (;;) {
+ while (true) {
int nfds = epoll_wait(epollfd, events, MAX_EVENTS, -1);
for (int i = 0; i < nfds; i++) {