diff options
author | Matt Johnston <matt@ucc.asn.au> | 2018-02-10 00:12:22 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2018-02-10 00:12:22 +0800 |
commit | 95b99cc86a757b3690c8a6cdfca225dc5a4cff7b (patch) | |
tree | 5e7e8204fdb854373d5306a5dd1ecbd44bdffe7a /libtomcrypt | |
parent | 6a713ad834b84ae48fa29543af9735a468769e1f (diff) |
cast m_burn argument away from volatile
Diffstat (limited to 'libtomcrypt')
-rw-r--r-- | libtomcrypt/src/misc/zeromem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libtomcrypt/src/misc/zeromem.c b/libtomcrypt/src/misc/zeromem.c index f46ced2..99b02f8 100644 --- a/libtomcrypt/src/misc/zeromem.c +++ b/libtomcrypt/src/misc/zeromem.c @@ -21,7 +21,7 @@ */ void zeromem(volatile void *out, size_t outlen) { - m_burn(out, outlen); + m_burn((void*)out, outlen); } /* ref: $Format:%D$ */ |