Shutdown curses when exit. While I am there, remove a stale

comment which does not apply to sade(8).
This commit is contained in:
Xin LI 2006-08-08 07:51:58 +00:00
parent eac2afced2
commit f5a6ba0f79

View File

@ -121,5 +121,8 @@ main(int argc, char **argv)
break; break;
} }
return 0; /* We should never get here */ /* Shut down curses */
endwin();
return 0;
} }