# HG changeset patch # User Matti Hamalainen # Date 1579227603 -7200 # Node ID 36c50873e02cb1abe50270450cb3e35f1a076ea3 # Parent 893b2deeb5be561205822536c1e340b409315861 Add one function argument name to the prototype. diff -r 893b2deeb5be -r 36c50873e02c th_crypto.h --- 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);