]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - stdin.c
Always include stdbool.h.
[paraslash.git] / stdin.c
diff --git a/stdin.c b/stdin.c
index e625f3726789972386de10c8af86d68b206e82c4..4b77a3d8e739a49793b06773993ba4396b05bb27 100644 (file)
--- a/stdin.c
+++ b/stdin.c
@@ -6,9 +6,7 @@
 
 /** \file stdin.c Functions that deal with reading from stdin. */
 
-#include <dirent.h> /* readdir() */
 #include <assert.h>
-#include <stdbool.h>
 #include <regex.h>
 
 #include "para.h"
@@ -105,7 +103,7 @@ void stdin_set_defaults(struct stdin_task *sit)
 
        sit->task.pre_select = stdin_pre_select;
        sit->task.post_select = stdin_post_select;
-       sit->btrp = btr_pool_new("stdin", 64 * 1024);
+       sit->btrp = btr_pool_new("stdin", 128 * 1024);
        sprintf(sit->task.status, "stdin reader");
        ret = mark_fd_nonblocking(STDIN_FILENO);
        if (ret >= 0)