dist: examples: fix minor typos

This commit is contained in:
Cenk Gündoğan 2016-12-27 13:50:42 +01:00
parent ff2d23b038
commit a5ffbeedf9
2 changed files with 2 additions and 2 deletions

2
dist/Makefile vendored
View File

@ -27,7 +27,7 @@ RIOTBASE ?= $(CURDIR)/../../RIOT
# development process: # development process:
#CFLAGS += -DDEVELHELP #CFLAGS += -DDEVELHELP
# Change this to 0 show compiler invocation lines by default: # Change this to 0 to show compiler invocation lines by default:
QUIET ?= 1 QUIET ?= 1
# Modules to include: # Modules to include:

View File

@ -83,7 +83,7 @@ static void send(char *addr_str, char *port_str, char *data, unsigned int num,
} }
/* access to `payload` was implicitly given up with the send operation above /* access to `payload` was implicitly given up with the send operation above
* => use temporary variable for output */ * => use temporary variable for output */
printf("Success: send %u byte to [%s]:%u\n", payload_size, addr_str, printf("Success: sent %u byte(s) to [%s]:%u\n", payload_size, addr_str,
port); port);
xtimer_usleep(delay); xtimer_usleep(delay);
} }