CMSG_DATA.3: Fix a typo in the EXAMPLES section

- s/faild/failed/

MFC after:	3 days
This commit is contained in:
Gordon Bergling 2022-10-25 12:49:21 +02:00
parent 1cc4c2f90f
commit 31c472b8a6

View file

@ -165,7 +165,7 @@ main()
close(hellofd[1]);
if (read(hellofd[0], buf, HELLOLEN) == -1)
err(EX_IOERR, "faild to receive 'hello'");
err(EX_IOERR, "failed to receive 'hello'");
printf("parent: received '%s'\\n", buf);
break;
}