From b76f72e1ac850f99e3d762e1e98660fb1337be87 Mon Sep 17 00:00:00 2001 From: Robrecht Dewaele Date: Wed, 16 May 2018 07:13:34 +0200 Subject: [PATCH] [posix] fixed trivial typographical error (#2715) --- examples/platforms/posix/radio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/platforms/posix/radio.c b/examples/platforms/posix/radio.c index 82fa79707..6abfe12c5 100644 --- a/examples/platforms/posix/radio.c +++ b/examples/platforms/posix/radio.c @@ -678,7 +678,7 @@ void radioTransmit(struct RadioMessage *aMessage, const struct otRadioFrame *aFr if (rval < 0) { - perror("recvfrom"); + perror("sendto"); exit(EXIT_FAILURE); } }