mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
fix unused-but-set warning
This commit is contained in:
parent
b46a99d7d7
commit
1a89680e7b
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ static struct crypto_pk *crypto_pk_polarssl_open_priv_rsa(va_list vl) {
|
||||||
|
|
||||||
static int myrand(void *rng_state, unsigned char *output, size_t len) {
|
static int myrand(void *rng_state, unsigned char *output, size_t len) {
|
||||||
size_t i;
|
size_t i;
|
||||||
rng_state = NULL;
|
(void)rng_state;
|
||||||
|
|
||||||
for (i = 0; i < len; ++i)
|
for (i = 0; i < len; ++i)
|
||||||
output[i] = rand();
|
output[i] = rand();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue