diff options
author | Payne <micblo@users.noreply.github.com> | 2018-09-22 03:42:02 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2018-09-22 03:42:02 +0800 |
commit | 1d9d3815e50153343b6edb88cd2378071c7fe073 (patch) | |
tree | ad2ce33a3ff11247185afed565dfa99d015a7f94 | |
parent | 06d40d37b800207918088bc4b94e129f7d28538d (diff) | |
download | dexon-1d9d3815e50153343b6edb88cd2378071c7fe073.tar.gz dexon-1d9d3815e50153343b6edb88cd2378071c7fe073.tar.zst dexon-1d9d3815e50153343b6edb88cd2378071c7fe073.zip |
crypto/secp256k1: remove useless code (#17728)
`(void)data;` may cause link error on Windows.
-rwxr-xr-x | crypto/secp256k1/libsecp256k1/src/secp256k1.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/crypto/secp256k1/libsecp256k1/src/secp256k1.c b/crypto/secp256k1/libsecp256k1/src/secp256k1.c index fb8b882fa..7d637bfad 100755 --- a/crypto/secp256k1/libsecp256k1/src/secp256k1.c +++ b/crypto/secp256k1/libsecp256k1/src/secp256k1.c @@ -26,7 +26,6 @@ } while(0) static void default_illegal_callback_fn(const char* str, void* data) { - (void)data; fprintf(stderr, "[libsecp256k1] illegal argument: %s\n", str); abort(); } @@ -37,7 +36,6 @@ static const secp256k1_callback default_illegal_callback = { }; static void default_error_callback_fn(const char* str, void* data) { - (void)data; fprintf(stderr, "[libsecp256k1] internal consistency check failed: %s\n", str); abort(); } |