diff options
author | Rob Landley <rob@landley.net> | 2018-08-17 23:02:00 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-08-17 23:02:00 -0500 |
commit | 17a2d5783ac38d1b79f37e2524d390ac7386dbf4 (patch) | |
tree | 1595c2a1c488c44241174fadd9ab55a756dc4053 /toys/other | |
parent | 151e3f782333acbe349fdaac3ec843e42e95be3f (diff) | |
download | toybox-17a2d5783ac38d1b79f37e2524d390ac7386dbf4.tar.gz |
Make microcom use set_terminal() and move speed setting into set_terminal().
Diffstat (limited to 'toys/other')
-rw-r--r-- | toys/other/hexedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/hexedit.c b/toys/other/hexedit.c index 3c5ada3a..06a96a22 100644 --- a/toys/other/hexedit.c +++ b/toys/other/hexedit.c @@ -132,7 +132,7 @@ void hexedit_main(void) tty_esc("0m"); tty_esc("?25l"); fflush(0); - xset_terminal(1, 1, 0); + xset_terminal(1, 1, 0, 0); if ((TT.len = fdlength(fd))<1) error_exit("bad length"); if (sizeof(long)==32 && TT.len>SIZE_MAX) TT.len = SIZE_MAX; |