Skip to content

Commit

Permalink
Fix get_driver for Core
Browse files Browse the repository at this point in the history
  • Loading branch information
mkitti committed Jun 3, 2023
1 parent 4d446fc commit 0470a0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/drivers/drivers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ Core(; increment=8192, backing_store=true, write_tracking=false, page_size=52428

function get_driver(p::Properties, ::Type{Core})
r_increment = Ref{Csize_t}(0)
r_backing_store = Ref{Cuint}(0)
r_write_tracking = Ref{Cuint}(0)
r_backing_store = Ref{Bool}(0)
r_write_tracking = Ref{Bool}(0)
r_page_size = Ref{Csize_t}(0)
API.h5p_get_fapl_core(p, r_increment, r_backing_store)
API.h5p_get_core_write_tracking(p, r_write_tracking, r_page_size)
Expand Down

0 comments on commit 0470a0c

Please sign in to comment.