Skip to content

Commit

Permalink
selftests: net: cmsg_sender: Fix spelling mistake "MONOTINIC" -> "MON…
Browse files Browse the repository at this point in the history
…OTONIC"

There is a spelling mistake in an error message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Colin Ian King authored and David S. Miller committed Feb 14, 2022
1 parent fa5d824 commit 12d8c11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/testing/selftests/net/cmsg_sender.c
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ int main(int argc, char *argv[])
if (clock_gettime(CLOCK_REALTIME, &time_start_real))
error(ERN_GETTIME, errno, "gettime REALTIME");
if (clock_gettime(CLOCK_MONOTONIC, &time_start_mono))
error(ERN_GETTIME, errno, "gettime MONOTINIC");
error(ERN_GETTIME, errno, "gettime MONOTONIC");

iov[0].iov_base = buf;
iov[0].iov_len = sizeof(buf);
Expand Down

0 comments on commit 12d8c11

Please sign in to comment.