summaryrefslogtreecommitdiffhomepage
path: root/libtomcrypt/src/hashes/helper/hash_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtomcrypt/src/hashes/helper/hash_file.c')
-rw-r--r--libtomcrypt/src/hashes/helper/hash_file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libtomcrypt/src/hashes/helper/hash_file.c b/libtomcrypt/src/hashes/helper/hash_file.c
index a92025c..df31606 100644
--- a/libtomcrypt/src/hashes/helper/hash_file.c
+++ b/libtomcrypt/src/hashes/helper/hash_file.c
@@ -25,6 +25,7 @@
int hash_file(int hash, const char *fname, unsigned char *out, unsigned long *outlen)
{
#ifdef LTC_NO_FILE
+ (void)hash; (void)fname; (void)out; (void)outlen;
return CRYPT_NOP;
#else
FILE *in;