1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #6270 from cgundogan/pr/typos

dist: examples: fix minor typos
This commit is contained in:
Martine Lenders 2017-01-04 15:43:00 +01:00 committed by GitHub
commit 1df4f9ff66
2 changed files with 2 additions and 2 deletions

2
dist/Makefile vendored
View File

@ -27,7 +27,7 @@ RIOTBASE ?= $(CURDIR)/../../RIOT
# development process:
#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
# 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
* => 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);
xtimer_usleep(delay);
}