From 9ee3ef57bb33d0f11957f8836eadc8b31c7205f3 Mon Sep 17 00:00:00 2001 From: Keith Winstein Date: Sun, 6 Feb 2011 01:57:15 -0500 Subject: [PATCH] Increase buffer size --- termemu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/termemu.cpp b/termemu.cpp index 43c8646..64e537b 100644 --- a/termemu.cpp +++ b/termemu.cpp @@ -25,7 +25,7 @@ #include "terminal.hpp" #include "swrite.hpp" -const size_t buf_size = 1024; +const size_t buf_size = 16384; void emulate_terminal( int fd, int debug_fd ); int copy( int src, int dest );