dtlogin: Resolve 27 compiler warnings

This commit is contained in:
Peter Howkins
2014-12-23 22:01:51 +00:00
parent 407aa2c4b7
commit bc842043d2
12 changed files with 90 additions and 34 deletions

View File

@@ -2177,7 +2177,9 @@ static SIGVAL
Terminate( int arg )
{
write(1, "terminate", 9);
if(-1 == write(1, "terminate", 9)) {
perror(strerror(errno));
}
CleanupAndExit(NULL, NOTIFY_ABORT);
}