diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-11-28 11:58:28 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-11-28 11:58:28 (GMT) |
commit | f4d4320270c604354ed7bf5463ba58eb6bf8577b (patch) | |
tree | 557642e9c96224c016d8145223730fcf5aa1e491 /src | |
parent | 3fe257916a621b17a20ec9e5ecdd24ef2eb56c3b (diff) |
Fixes.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/tng_io.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/tng_io.c b/src/lib/tng_io.c index d1deda5..e60aab5 100644 --- a/src/lib/tng_io.c +++ b/src/lib/tng_io.c @@ -16562,7 +16562,7 @@ tng_function_status DECLSPECDLLEXPORT tng_util_generic_write } else { - p_data->first_frame_with_data = frame_set->first_frame + p_data->first_frame_with_data = frame_set->first_frame; } memcpy((char *)p_data->values + sizeof(float) * frame_pos * n_particles * @@ -16621,7 +16621,7 @@ tng_function_status DECLSPECDLLEXPORT tng_util_generic_write } else { - np_data->first_frame_with_data = frame_set->first_frame + np_data->first_frame_with_data = frame_set->first_frame; } memcpy((char *)np_data->values + sizeof(float) * frame_pos * @@ -16781,7 +16781,7 @@ tng_function_status DECLSPECDLLEXPORT tng_util_generic_double_write } else { - p_data->first_frame_with_data = frame_set->first_frame + p_data->first_frame_with_data = frame_set->first_frame; } memcpy((char *)p_data->values + sizeof(float) * frame_pos * n_particles * @@ -16840,7 +16840,7 @@ tng_function_status DECLSPECDLLEXPORT tng_util_generic_double_write } else { - p_data->first_frame_with_data = frame_set->first_frame + p_data->first_frame_with_data = frame_set->first_frame; } memcpy((char *)np_data->values + sizeof(float) * frame_pos * |