summaryrefslogtreecommitdiff
path: root/apps/examples
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples')
-rw-r--r--apps/examples/udgram/udgram_client.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/examples/udgram/udgram_client.c b/apps/examples/udgram/udgram_client.c
index c24ba8a81..ece6cb607 100644
--- a/apps/examples/udgram/udgram_client.c
+++ b/apps/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.
*/