diff options
Diffstat (limited to 'cmd/cmd_rand_libc.c')
-rw-r--r-- | cmd/cmd_rand_libc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/cmd_rand_libc.c b/cmd/cmd_rand_libc.c index d72bc45..1860a77 100644 --- a/cmd/cmd_rand_libc.c +++ b/cmd/cmd_rand_libc.c @@ -4,7 +4,6 @@ void *cmd_rand_libc(void *data) { char *ret = NULL; - int fret=-1; const int buf_size = 128; char buf[buf_size+1]; @@ -25,7 +24,7 @@ void *cmd_rand_libc(void *data) } else { //cut output to 512 char str_integer[16]; - int rand_state; + unsigned int rand_state; params = sdsnew(data); out_result = sdsempty(); |