changeset 624:36c50873e02c

Add one function argument name to the prototype.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 17 Jan 2020 04:20:03 +0200
parents 893b2deeb5be
children dfed3754f7fd
files th_crypto.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/th_crypto.h	Fri Jan 17 04:16:48 2020 +0200
+++ b/th_crypto.h	Fri Jan 17 04:20:03 2020 +0200
@@ -45,7 +45,7 @@
 void    th_md5_init(th_md5state_t *ctx);
 void    th_md5_append(th_md5state_t *ctx, const uint8_t *buf, size_t len);
 void    th_md5_finish(th_md5state_t *ctx, th_md5hash_t digest);
-void    th_md5_print(FILE *, const th_md5hash_t digest);
+void    th_md5_print(FILE *fp, const th_md5hash_t digest);
 
 void    th_md5_append_u8(th_md5state_t *ctx, uint8_t val);