diff --git a/examples/udgram/udgram_client.c b/examples/udgram/udgram_client.c index c24ba8a81..ece6cb607 100644 --- a/examples/udgram/udgram_client.c +++ b/examples/udgram/udgram_client.c @@ -124,7 +124,6 @@ int client_main(int argc, char *argv[]) printf("client: %d. Sending %d bytes\n", offset, SENDSIZE); nbytes = sendto(sockfd, outbuf, SENDSIZE, 0, (struct sockaddr *)&server, addrlen); - printf("client: %d. Sent %d bytes\n", offset, nbytes); if (nbytes < 0) { @@ -140,6 +139,8 @@ int client_main(int argc, char *argv[]) return 1; } + printf("client: %d. Sent %d bytes\n", offset, nbytes); + /* Now, sleep a bit. No packets should be dropped due to overrunning * the server. */