Skip to content

Commit

Permalink
Remove double assignment.
Browse files Browse the repository at this point in the history
  • Loading branch information
calleluks committed Mar 9, 2015
1 parent cbfa26f commit 55c8fec
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/ui.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ start_ui()
tcgetattr(fileno(tty), &oldattr);
newattr = oldattr;
newattr.c_lflag &= ~(ICANON | ECHO);
newattr.c_lflag &= ~(ICANON | ECHO);
tcsetattr(fileno(tty), TCSANOW, &newattr);
setupterm((char *)0, fileno(tty), (int *)0);
if (using_alternate_screen) {
Expand Down

0 comments on commit 55c8fec

Please sign in to comment.