warning fixes

This commit is contained in:
Hisham Muhammad 2010-02-25 01:35:12 +00:00
parent 23fc40976e
commit aff118ab39
1 changed files with 4 additions and 2 deletions

6
CRT.c
View File

@ -116,13 +116,15 @@ int CRT_colors[LAST_COLORELEMENT] = { 0 };
char* CRT_termType;
static void CRT_handleSIGSEGV(int signal) {
static void CRT_handleSIGSEGV(int sgn) {
(void) sgn;
CRT_done();
fprintf(stderr, "htop " VERSION " aborted. Please report bug at http://htop.sf.net\n");
exit(1);
}
static void CRT_handleSIGTERM(int signal) {
static void CRT_handleSIGTERM(int sgn) {
(void) sgn;
CRT_done();
exit(0);
}