Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
fix #573, compile error in 1.7+ (#577)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson authored Jun 29, 2021
1 parent 4a24142 commit 51833fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/GLib/signals.jl
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,8 @@ function uv_check(src::Ptr{Nothing})
return Int32(ex <= now)
end
end
function uv_dispatch(src::Ptr{Nothing}, callback::Ptr{Nothing}, data::T) where T
return ccall(callback, Cint, (T,), data)
function uv_dispatch(src::Ptr{Nothing}, callback::Ptr{Nothing}, data)
return ccall(callback, Cint, (UInt,), data)
end

sizeof_gclosure = 0
Expand Down

0 comments on commit 51833fb

Please sign in to comment.