diff options
Diffstat (limited to 'src/lib/ffi/ffi.cpp')
-rw-r--r-- | src/lib/ffi/ffi.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/lib/ffi/ffi.cpp b/src/lib/ffi/ffi.cpp index 6aedd2a38..0c5a3de67 100644 --- a/src/lib/ffi/ffi.cpp +++ b/src/lib/ffi/ffi.cpp @@ -1438,10 +1438,7 @@ int botan_pubkey_load_elgamal(botan_pubkey_t* key, return -1; #else - BOTAN_UNUSED(p); - BOTAN_UNUSED(q); - BOTAN_UNUSED(g); - BOTAN_UNUSED(x); + BOTAN_UNUSED(key, p, g, y); return BOTAN_FFI_ERROR_NOT_IMPLEMENTED; #endif } @@ -1464,9 +1461,7 @@ int botan_privkey_load_elgamal(botan_privkey_t* key, } return -1; #else - BOTAN_UNUSED(p); - BOTAN_UNUSED(g); - BOTAN_UNUSED(x); + BOTAN_UNUSED(key, p, g, x); return BOTAN_FFI_ERROR_NOT_IMPLEMENTED; #endif } |