Fix a warning found in build testing.

This commit is contained in:
Gregory Nutt 2019-05-25 12:11:12 -06:00
parent 95a1a49c14
commit a38c85dbaa

View File

@ -278,7 +278,7 @@ int udpblaster_main(int argc, char *argv[])
if (bind(sockfd, (struct sockaddr*)&target, addrlen) < 0)
{
printf(stderr, "ERROR bind failure: %d\n", errno);
fprintf(stderr, "ERROR bind failure: %d\n", errno);
ret = EXIT_FAILURE;
goto errout_with_socket;
}