diff options
author | Thomas White <taw@bitwiz.org.uk> | 2009-10-16 17:13:03 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2009-10-16 17:13:15 +0200 |
commit | e7253737e57645168089fa2ec417c8994a28606b (patch) | |
tree | 1532bfef8daaa205a0ab5431d14fe15729199e46 /src/hdf5-file.c | |
parent | 8b883cd945ec49ec117ceee3b82760eb20d5c3a6 (diff) |
Remove unnecessary debugging output
Diffstat (limited to 'src/hdf5-file.c')
-rw-r--r-- | src/hdf5-file.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/hdf5-file.c b/src/hdf5-file.c index 8a7ffbab..46538c76 100644 --- a/src/hdf5-file.c +++ b/src/hdf5-file.c @@ -108,9 +108,6 @@ int hdf5_read(struct image *image, const char *filename) } H5Sget_simple_extent_dims(sh, size, max_size); - printf("Data dimensions %i %i (max %i %i)\n", - (int)size[1], (int)size[0], - (int)max_size[1], (int)max_size[0]); buf = malloc(sizeof(float)*size[0]*size[1]); |