Skip to content

Commit eb54c12

Browse files
committed
compilation fix
1 parent e515e5e commit eb54c12

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/Example_get_apr.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ int main(int argc, char **argv) {
105105
unsigned int blosc_shuffle = 1;
106106

107107
//write the APR to hdf5 file
108-
float apr_file_size = apr.write_apr(save_loc,file_name,blosc_comp_type,blosc_comp_level,blosc_shuffle);
108+
FileSizeInfo fileSizeInfo = apr.write_apr(save_loc,file_name,blosc_comp_type,blosc_comp_level,blosc_shuffle);
109+
float apr_file_size = fileSizeInfo.total_file_size;
109110

110111
timer.stop_timer();
111112

0 commit comments

Comments
 (0)