aboutsummaryrefslogtreecommitdiff
path: root/src/hdf5-file.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2009-11-13 12:17:31 +0100
committerThomas White <taw@physics.org>2009-11-13 12:17:31 +0100
commit4e1519eeadbfbfe65d0b000a3af610bec77bbfc3 (patch)
tree01fe2807eb714af1c3d5afdeb2fece0192fcc7bf /src/hdf5-file.c
parentef6a971cf432321ceb057b8c355c8e6814d5aff6 (diff)
Remove message (happy that this works)
Diffstat (limited to 'src/hdf5-file.c')
-rw-r--r--src/hdf5-file.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/hdf5-file.c b/src/hdf5-file.c
index 459f285c..d90dd6b3 100644
--- a/src/hdf5-file.c
+++ b/src/hdf5-file.c
@@ -59,10 +59,7 @@ int hdf5_write(const char *filename, const uint16_t *data,
/* Muppet check */
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]);
-
+
r = H5Dwrite(dh, H5T_NATIVE_UINT16, H5S_ALL,
H5S_ALL, H5P_DEFAULT, data);
if ( r < 0 ) {