Skip to content

Commit

Permalink
Merge pull request #186 from cmhamel/fix-error-var-name
Browse files Browse the repository at this point in the history
bumping version number and fixing bad variable name
  • Loading branch information
cmhamel authored Jul 20, 2024
2 parents c4a050e + ae53fa9 commit 291b243
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Exodus"
uuid = "f57ae99e-f805-4780-bdca-96e224be1e5a"
authors = ["cmhamel <[email protected]>"]
version = "0.13.1"
version = "0.13.2"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand Down
4 changes: 2 additions & 2 deletions src/ExodusTypes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -505,8 +505,8 @@ function ExodusDatabase{M, I, B, F}(
end

if int_modes != 0x00000000
error = @ccall libexodus.ex_set_int64_status(exo::Cint, int_modes::Cint)::Cint
exodus_error_check(exo, error, "Exodus.ExodusDatabase -> libexodus.ex_set_int64_status")
err = @ccall libexodus.ex_set_int64_status(exo::Cint, int_modes::Cint)::Cint
exodus_error_check(exo, err, "Exodus.ExodusDatabase -> libexodus.ex_set_int64_status")
end

write_initialization!(exo, init)
Expand Down

0 comments on commit 291b243

Please sign in to comment.