Skip to content

Commit

Permalink
Make type conversion compatible with Julia 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed Apr 14, 2016
1 parent f020847 commit c6d6a8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plain.jl
Expand Up @@ -41,7 +41,7 @@ function h5_get_libversion()
if status < 0
error("Error getting HDF5 library version")
end
Int(_majnum[1]), Int(_minnum[1]), Int(_relnum[1])
convert(Int,_majnum[1]), convert(Int,_minnum[1]), convert(Int,_relnum[1])
end

_libversion = h5_get_libversion()
Expand Down

0 comments on commit c6d6a8b

Please sign in to comment.