diff options
Diffstat (limited to 'miscutils/chat.c')
-rw-r--r-- | miscutils/chat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/miscutils/chat.c b/miscutils/chat.c index 25850dd20..6b429f2a6 100644 --- a/miscutils/chat.c +++ b/miscutils/chat.c | |||
@@ -286,9 +286,10 @@ int chat_main(int argc UNUSED_PARAM, char **argv) | |||
286 | && poll(&pfd, 1, timeout) > 0 | 286 | && poll(&pfd, 1, timeout) > 0 |
287 | && (pfd.revents & POLLIN) | 287 | && (pfd.revents & POLLIN) |
288 | ) { | 288 | ) { |
289 | #define buf bb_common_bufsiz1 | ||
290 | llist_t *l; | 289 | llist_t *l; |
291 | ssize_t delta; | 290 | ssize_t delta; |
291 | #define buf bb_common_bufsiz1 | ||
292 | setup_common_bufsiz(); | ||
292 | 293 | ||
293 | // read next char from device | 294 | // read next char from device |
294 | if (safe_read(STDIN_FILENO, buf+buf_len, 1) > 0) { | 295 | if (safe_read(STDIN_FILENO, buf+buf_len, 1) > 0) { |