Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Matt Johnston
dropbear
Commits
9f3c8174
Commit
9f3c8174
authored
Mar 11, 2013
by
Matt Johnston
Browse files
fix signedness error in prototype
parent
a9cf0ca2
Changes
1
Hide whitespace changes
Inline
Side-by-side
random.c
View file @
9f3c8174
...
...
@@ -26,6 +26,7 @@
#include "buffer.h"
#include "dbutil.h"
#include "bignum.h"
#include "random.h"
/* this is used to generate unique output from the same hashpool */
static
uint32_t
counter
=
0
;
...
...
@@ -136,7 +137,7 @@ out:
return
ret
;
}
void
addrandom
(
char
*
buf
,
int
len
)
void
addrandom
(
char
*
buf
,
unsigned
int
len
)
{
hash_state
hs
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment