From 699139db02bf4079269cda9c1e65c1d8efec2c5d Mon Sep 17 00:00:00 2001 From: "Dmitriy A. Gerasimov" <dmitriy.gerasimov@demlabs.net> Date: Sat, 21 Dec 2019 16:56:35 +0700 Subject: [PATCH] [*] Small fix --- include/dap_hash.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/dap_hash.h b/include/dap_hash.h index 4fb141e..28d3977 100755 --- a/include/dap_hash.h +++ b/include/dap_hash.h @@ -96,6 +96,7 @@ static inline bool dap_hash_fast_is_blank( dap_chain_hash_fast_t *a_hash ) DAP_STATIC_INLINE int dap_chain_hash_fast_to_str( dap_chain_hash_fast_t *a_hash, char *a_str, size_t a_str_max ) { + (void) a_str_max; a_str[0] = '0'; a_str[1] = 'x'; a_str[ DAP_CHAIN_HASH_FAST_SIZE * 2 + 2 ] = 0; -- GitLab