We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d4c9eb commit 06fdbd7Copy full SHA for 06fdbd7
stdlib/OpenSSL_jll/test/runtests.jl
@@ -3,8 +3,8 @@
3
using Test, Libdl, OpenSSL_jll
4
5
@testset "OpenSSL_jll" begin
6
- major = ccall((:OPENSSL_version_major, libcrypto), CUInt, (CVoid,))
7
- minor = ccall((:OPENSSL_version_minor, libcrypto), CUInt, (CVoid,))
8
- patch = ccall((:OPENSSL_version_patch, libcrypto), CUInt, (CVoid,))
+ major = ccall((:OPENSSL_version_major, libcrypto), Cuint, ())
+ minor = ccall((:OPENSSL_version_minor, libcrypto), Cuint, ())
+ patch = ccall((:OPENSSL_version_patch, libcrypto), Cuint, ())
9
@test VersionNumber(major, minor, patch) == v"3.0.13"
10
end
0 commit comments