summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cipher/primegen.c2
-rw-r--r--src/dumpsexp.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/cipher/primegen.c b/cipher/primegen.c
index e24de4dc..25ebaf26 100644
--- a/cipher/primegen.c
+++ b/cipher/primegen.c
@@ -752,6 +752,8 @@ gen_prime (unsigned int nbits, int secret, int randomlevel,
unsigned int count1, count2;
int *mods;
+ (void)count1; /* The value is not used, actually. */
+
/* if ( DBG_CIPHER ) */
/* log_debug ("generate a prime of %u bits ", nbits ); */
diff --git a/src/dumpsexp.c b/src/dumpsexp.c
index cedc4f4b..ae656359 100644
--- a/src/dumpsexp.c
+++ b/src/dumpsexp.c
@@ -414,6 +414,7 @@ parse_and_print (FILE *fp)
}
state = INIT_STATE;
+ (void)level; /* The value is not used, but useful in debug session. */
while ((c = my_getc (fp)) != EOF )
{