aboutsummaryrefslogtreecommitdiff
path: root/src/hdf5-file.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2009-10-16 17:13:03 +0200
committerThomas White <taw@bitwiz.org.uk>2009-10-16 17:13:15 +0200
commite7253737e57645168089fa2ec417c8994a28606b (patch)
tree1532bfef8daaa205a0ab5431d14fe15729199e46 /src/hdf5-file.c
parent8b883cd945ec49ec117ceee3b82760eb20d5c3a6 (diff)
Remove unnecessary debugging output
Diffstat (limited to 'src/hdf5-file.c')
-rw-r--r--src/hdf5-file.c3
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]);