Remove dot at the end of errx() message.

Noted by:	bde
MFC after:	3 days
This commit is contained in:
Konstantin Belousov 2010-03-14 13:29:09 +00:00
parent 6e2e67160e
commit 43648bc031
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=205151

View File

@ -66,7 +66,7 @@ test_named(void)
err(2, "second sem_open call failed");
if (s != s2)
errx(3,
"two sem_open calls for same semaphore do not return same address.");
"two sem_open calls for same semaphore do not return same address");
if (sem_close(s2))
err(4, "sem_close failed");
if ((pid = fork()) == 0) {