Fixed seed

This commit is contained in:
buffet 2018-10-18 23:28:56 +02:00
parent 2fb1f6d812
commit 8167719270

View file

@ -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