diff options
author | FreeArtMan <dos21h@gmail.com> | 2017-09-19 13:49:04 +0100 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2017-09-19 13:49:04 +0100 |
commit | c2f9ce9c4b65ee53cd0c070895833215185061f3 (patch) | |
tree | 23ba9cde2a933448395d236ac4a87d22ee2d7282 /cmd/cmd_rand_libc.c | |
parent | fc6970fcd404305c3e16d2e90d6d0dec4b03c160 (diff) | |
download | agni-c2f9ce9c4b65ee53cd0c070895833215185061f3.tar.gz agni-c2f9ce9c4b65ee53cd0c070895833215185061f3.zip |
New line bug fix, /b 5
Diffstat (limited to 'cmd/cmd_rand_libc.c')
-rw-r--r-- | cmd/cmd_rand_libc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/cmd_rand_libc.c b/cmd/cmd_rand_libc.c index 1860a77..f0bd7a1 100644 --- a/cmd/cmd_rand_libc.c +++ b/cmd/cmd_rand_libc.c @@ -35,7 +35,7 @@ void *cmd_rand_libc(void *data) snprintf(str_integer, 16, "%d ", rand_r(&rand_state)); out_result = sdscat(out_result, str_integer); } - out_result = sdscat(out_result,"\n"); + out_result = sdscat(out_result,""); snprintf(buf, buf_size, "%s", out_result); sdsfree(params); |