Browse Source

Fix missing `static`

Signed-off-by: Steffen Jaeckel <[email protected]>
Steffen Jaeckel 1 year ago
parent
commit
90529a2d0c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/hashes/tiger.c

+ 1 - 1
src/hashes/tiger.c

@@ -791,7 +791,7 @@ int tiger_done(hash_state * md, unsigned char *out)
   Self-test the hash
   Self-test the hash
   @return CRYPT_OK if successful, CRYPT_NOP if self-tests have been disabled
   @return CRYPT_OK if successful, CRYPT_NOP if self-tests have been disabled
 */
 */
-int s_tiger_test(unsigned int idx)
+static int s_tiger_test(unsigned int idx)
 {
 {
  #ifndef LTC_TEST
  #ifndef LTC_TEST
     LTC_UNUSED_PARAM(idx);
     LTC_UNUSED_PARAM(idx);