diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-12-17 14:56:29 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-12-17 14:56:29 (GMT) |
commit | 3cad8a6ce16b3ad04d69b094b3fbb374b6905f8f (patch) | |
tree | f4fa4e79532392b70f658e88387b07aaed103346 /src | |
parent | 54948705ecf51078238579aae9406b45078076db (diff) |
Remove error message when not finding data block.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/tng_io.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/tng_io.c b/src/lib/tng_io.c index 127a9d4..f318ba7 100644 --- a/src/lib/tng_io.c +++ b/src/lib/tng_io.c @@ -16398,8 +16398,6 @@ tng_function_status DECLSPECDLLEXPORT tng_util_particle_data_next_frame_read stat = tng_frame_set_read_current_only_data_from_block_id(tng_data, TNG_USE_HASH, block_id); if(stat != TNG_SUCCESS) { - fprintf(stderr, "TNG library: Cannot read data blocks of frame set. %s: %d\n", - __FILE__, __LINE__); return(stat); } } @@ -16568,8 +16566,6 @@ tng_function_status DECLSPECDLLEXPORT tng_util_non_particle_data_next_frame_read stat = tng_frame_set_read_current_only_data_from_block_id(tng_data, TNG_USE_HASH, block_id); if(stat != TNG_SUCCESS) { - fprintf(stderr, "TNG library: Cannot read data blocks of frame set. %s: %d\n", - __FILE__, __LINE__); return(stat); } } |