From c2547b00340d472f6b4d8ccef06b18330c00427e Mon Sep 17 00:00:00 2001 From: Paul Bakker Date: Mon, 20 Jul 2009 20:40:52 +0000 Subject: [PATCH] - Surpress warning of unused 'mode' parameter in Camellia --- library/camellia.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/library/camellia.c b/library/camellia.c index 1255fa0ad..3f3b26856 100644 --- a/library/camellia.c +++ b/library/camellia.c @@ -458,6 +458,8 @@ void camellia_crypt_ecb( camellia_context *ctx, int NR; uint32_t *RK, X[4]; + ( (void) mode ); + NR = ctx->nr; RK = ctx->rk;