diff options
Diffstat (limited to 'common/miscellaneous.c')
-rw-r--r-- | common/miscellaneous.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/common/miscellaneous.c b/common/miscellaneous.c index b7210ef2b..1c88068f1 100644 --- a/common/miscellaneous.c +++ b/common/miscellaneous.c @@ -31,6 +31,8 @@ static void my_gcry_logger (void *dummy, int level, const char *fmt, va_list arg_ptr) { + (void)dummy; + /* Map the log levels. */ switch (level) { @@ -51,6 +53,8 @@ my_gcry_logger (void *dummy, int level, const char *fmt, va_list arg_ptr) static void my_gcry_fatalerror_handler (void *opaque, int rc, const char *text) { + (void)opaque; + log_fatal ("libgcrypt problem: %s\n", text ? text : gpg_strerror (rc)); abort (); } @@ -64,6 +68,8 @@ my_gcry_outofcore_handler (void *opaque, size_t req_n, unsigned int flags) { static int been_here; /* Used to protect against recursive calls. */ + (void)opaque; + if (!been_here) { been_here = 1; @@ -140,6 +146,8 @@ print_hexstring (FILE *fp, const void *buffer, size_t length, int reserved) #define tohex(n) ((n) < 10 ? ((n) + '0') : (((n) - 10) + 'A')) const unsigned char *s; + (void)reserved; + for (s = buffer; length; s++, length--) { putc ( tohex ((*s>>4)&15), fp); |