diff --git a/Userland/cat.cpp b/Userland/cat.cpp index b350068602..0e8110fdab 100644 --- a/Userland/cat.cpp +++ b/Userland/cat.cpp @@ -24,7 +24,7 @@ int main(int argc, char** argv) } for (auto& fd : fds) { for (;;) { - char buf[4096]; + char buf[32768]; ssize_t nread = read(fd, buf, sizeof(buf)); if (nread == 0) break;