Skip to content

Commit 944e7ae

Browse files
committed
Fix symbolcall argtype for time in tests
1 parent fc670f7 commit 944e7ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/testllvminterop.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
a, b = dltime(), time()
3030
@test isapprox(a, b, atol = 5)
3131

32-
ctime() = @symbolcall time()::Int64
32+
ctime() = @symbolcall time(C_NULL::Ptr{Nothing})::Int64
3333
a, b = ctime(), time()
3434
@test isapprox(a, b, atol = 5)
3535

0 commit comments

Comments
 (0)