Skip to content
Snippets Groups Projects
Commit 8560129c authored by Niels Möller's avatar Niels Möller
Browse files

(progress): Declare the ctx argument

as UNUSED.

Rev: src/nettle/testsuite/rsa-keygen-test.c:1.2
parent f0053e65
No related branches found
No related tags found
No related merge requests found
...@@ -2,8 +2,14 @@ ...@@ -2,8 +2,14 @@
#include "knuth-lfib.h" #include "knuth-lfib.h"
#if __GNUC__
# define UNUSED __attribute__ ((__unused__))
#else
# define UNUSED
#endif
static void static void
progress(void *ctx, int c) progress(void *ctx UNUSED, int c)
{ {
fputc(c, stderr); fputc(c, stderr);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment