Fixed seed
This commit is contained in:
parent
2fb1f6d812
commit
8167719270
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ main(int argc, const char *argv[])
|
||||||
size_t msg_len = 0;
|
size_t msg_len = 0;
|
||||||
|
|
||||||
for (int i = 1; i < argc; ++i) {
|
for (int i = 1; i < argc; ++i) {
|
||||||
msg_len += (size_t)snprintf(msg + msg_len, sizeof(msg), "%s", argv[i]);
|
msg_len += (size_t)snprintf(msg + msg_len, sizeof(msg), "%s ", argv[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
msg_len -= 1; // remove trailing space
|
msg_len -= 1; // remove trailing space
|
||||||
|
|
Loading…
Add table
Reference in a new issue