diff options
Diffstat (limited to 'src/os/input.c')
-rw-r--r-- | src/os/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/input.c b/src/os/input.c index 4311d70e54..e0a00e006a 100644 --- a/src/os/input.c +++ b/src/os/input.c @@ -34,7 +34,7 @@ static int push_event_key(uint8_t *buf, int maxlen); void input_init() { - read_stream = rstream_new(read_cb, READ_BUFFER_SIZE, NULL); + read_stream = rstream_new(read_cb, READ_BUFFER_SIZE, NULL, false); rstream_set_file(read_stream, read_cmd_fd); } |