diff options
author | Nicola Tuveri <nic.tuv@gmail.com> | 2018-06-21 23:59:58 +0200 |
---|---|---|
committer | Dr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> | 2018-06-22 08:08:01 +0200 |
commit | 3f5abab94104574c32991243668ac633a8d8e525 (patch) | |
tree | ae630280c89e05ac779bbc397b7858601d8dd1a6 /test | |
parent | testutil/driver.c: Fix function prototype warning [-Wstrict-prototypes] (diff) | |
download | openssl-3f5abab94104574c32991243668ac633a8d8e525.tar.xz openssl-3f5abab94104574c32991243668ac633a8d8e525.zip |
enable-ec_nistp_64_gcc_128: Fix function prototype warning [-Wstrict-prototypes]
Fix prototype warnings triggered by -Wstrict-prototypes when configuring
with `enable-ec_nistp_64_gcc_128`
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/6556)
Diffstat (limited to 'test')
-rw-r--r-- | test/ectest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ectest.c b/test/ectest.c index 73e8aa8732..ead23d7230 100644 --- a/test/ectest.c +++ b/test/ectest.c @@ -1167,7 +1167,7 @@ static int internal_curve_test_method(int n) * implementations of several NIST curves with characteristic > 3. */ struct nistp_test_params { - const EC_METHOD *(*meth) (); + const EC_METHOD *(*meth) (void); int degree; /* * Qx, Qy and D are taken from |