diff options
author | Rob Landley <rob@landley.net> | 2016-01-10 15:59:09 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-01-10 15:59:09 -0600 |
commit | 1b983744cde6819fe1d810e98cfac52585ceacaf (patch) | |
tree | b9ace7b8fd5de7183717a5ea4fc92001700b16c8 /toys/other | |
parent | 8784d8d968c72328db11a72d50c836fc1650fa9a (diff) | |
download | toybox-1b983744cde6819fe1d810e98cfac52585ceacaf.tar.gz |
Make cursor left/right change sort type in iotop.
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 3c362dbd..c86d75e8 100644 --- a/toys/other/hexedit.c +++ b/toys/other/hexedit.c @@ -125,7 +125,7 @@ void hexedit_main(void) tty_esc("0m"); tty_esc("?25l"); fflush(0); - set_terminal(1, 1, 0); + xset_terminal(1, 1, 0); if ((TT.len = fdlength(fd))<0) error_exit("bad length"); if (sizeof(long)==32 && TT.len>SIZE_MAX) TT.len = SIZE_MAX; |