Skip to content

Commit

Permalink
Fix 32-bit issue with H5T_VARIABLE (fixes #188)
Browse files Browse the repository at this point in the history
  • Loading branch information
timholy committed Dec 6, 2014
1 parent 2c218c0 commit d830040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plain.jl
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ const H5T_STR_NULLTERM = 0
const H5T_STR_NULLPAD = 1
const H5T_STR_SPACEPAD = 2
# Other type constants
const H5T_VARIABLE = reinterpret(Uint64, int64(-1))
const H5T_VARIABLE = reinterpret(Uint, -1)
# Type_id constants (LE = little endian, I16 = Int16, etc)
const H5T_STD_I8LE = read_const(:H5T_STD_I8LE_g)
const H5T_STD_I8BE = read_const(:H5T_STD_I8BE_g)
Expand Down

0 comments on commit d830040

Please sign in to comment.