diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2012-12-17 09:22:35 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2012-12-17 09:22:35 (GMT) |
commit | f00231c34fcb7626cb5420d7015b83fa27a8f89d (patch) | |
tree | 6ea42189438d95a43142772e52f815a51ee6c45e /src/lib/tng_io.h | |
parent | 6a66b1f374e4019119e103745bde8b96ebd6ba6d (diff) |
Remove malloc return type casting. Minor fixes
Diffstat (limited to 'src/lib/tng_io.h')
-rw-r--r-- | src/lib/tng_io.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/tng_io.h b/src/lib/tng_io.h index b68e11d..2ad8f23 100644 --- a/src/lib/tng_io.h +++ b/src/lib/tng_io.h @@ -1039,7 +1039,8 @@ tng_function_status tng_particle_data_block_add(tng_trajectory_t tng_data, */ tng_function_status tng_frame_read_interval(tng_trajectory_t tng_data, int64_t start_frame_nr, - int64_t end_frame_nr); + int64_t end_frame_nr, + const tng_hash_mode hash_mode); /** * @brief Write a number of consecutive trajectory frames to the output_file of @@ -1055,7 +1056,8 @@ tng_function_status tng_frame_read_interval(tng_trajectory_t tng_data, */ tng_function_status tng_frame_write_interval(tng_trajectory_t tng_data, int64_t start_frame_nr, - int64_t end_frame_nr); + int64_t end_frame_nr, + const tng_hash_mode hash_mode); /** * @brief Free data is an array of values (2D). |