Add missed EOL when die() was converted to use rtld_fdputstr() instead

of errx().

Reported by:	amdmi3
PR:	bin/165075
MFC after:	3 days
This commit is contained in:
Konstantin Belousov 2012-02-13 11:15:29 +00:00
parent 81b95c2cc7
commit 0eddfb0608
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=231582

View File

@ -757,6 +757,7 @@ die(void)
if (msg == NULL)
msg = "Fatal error";
rtld_fdputstr(STDERR_FILENO, msg);
rtld_fdputchar(STDERR_FILENO, '\n');
_exit(1);
}