diff options
author | Francois Perrad <francois.perrad@gadz.org> | 2015-12-31 17:16:39 +0100 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2016-03-16 22:41:19 +0800 |
commit | f3a6dd139ca998d24dabcb47745baacc16e5b7dc (patch) | |
tree | bcc37fb87fd471bb48f184c53638629c3797f550 /ltc_prng.c | |
parent | 1dba0d4830786ba17966a8d1397f07557e95bfd5 (diff) |
Suspicious use of &
Diffstat (limited to 'ltc_prng.c')
-rw-r--r-- | ltc_prng.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -123,14 +123,14 @@ int dropbear_prng_test(void) const struct ltc_prng_descriptor dropbear_prng_desc = { "dropbear_prng", 0, - &dropbear_prng_start, - &dropbear_prng_add_entropy, - &dropbear_prng_ready, - &dropbear_prng_read, - &dropbear_prng_done, - &dropbear_prng_export, - &dropbear_prng_import, - &dropbear_prng_test + dropbear_prng_start, + dropbear_prng_add_entropy, + dropbear_prng_ready, + dropbear_prng_read, + dropbear_prng_done, + dropbear_prng_export, + dropbear_prng_import, + dropbear_prng_test }; |