1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-04 12:52:15 +00:00

Call endwin() to restore terminal state just before exiting.

Approved by:	phk
This commit is contained in:
Giorgos Keramidas 2003-03-21 09:34:23 +00:00
parent 430bd13fe9
commit dfb085cc35
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=112457

View File

@ -228,5 +228,7 @@ main(int argc, char **argv)
break;
}
}
endwin();
exit (0);
}