diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2003-07-26 02:55:47 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2003-07-26 02:55:47 (GMT) |
commit | 0d22a663df367ada055cb3695186c669e1dd6d5e (patch) | |
tree | 9a3c6588411b63b90ec5d86f65032c0f373eb4e2 /test/lheap.c | |
parent | b4b2b55d33be1c4f1c33aaf58294281a93b7da39 (diff) | |
download | hdf5-0d22a663df367ada055cb3695186c669e1dd6d5e.zip hdf5-0d22a663df367ada055cb3695186c669e1dd6d5e.tar.gz hdf5-0d22a663df367ada055cb3695186c669e1dd6d5e.tar.bz2 |
[svn-r7265] *** empty log message ***
Diffstat (limited to 'test/lheap.c')
-rw-r--r-- | test/lheap.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/lheap.c b/test/lheap.c index 9ed2b60..1c240d6 100644 --- a/test/lheap.c +++ b/test/lheap.c @@ -74,12 +74,12 @@ main(void) goto error; if (NULL==(f=H5I_object(file))) { H5_FAILED(); - H5Eprint(stdout); + H5Eprint(H5E_DEFAULT, stdout); goto error; } if (H5HL_create(f, H5P_DATASET_XFER_DEFAULT, 0, &heap_addr/*out*/)<0) { H5_FAILED(); - H5Eprint(stdout); + H5Eprint(H5E_DEFAULT, stdout); goto error; } for (i = 0; i < NOBJS; i++) { @@ -90,7 +90,7 @@ main(void) if ((size_t)(-1)==(obj[i]=H5HL_insert(f, H5P_DATASET_XFER_DEFAULT, heap_addr, strlen(buf)+1, buf))) { H5_FAILED(); - H5Eprint(stdout); + H5Eprint(H5E_DEFAULT, stdout); goto error; } } @@ -106,7 +106,7 @@ main(void) if ((file=H5Fopen(filename, H5F_ACC_RDONLY, fapl))<0) goto error; if (NULL==(f=H5I_object(file))) { H5_FAILED(); - H5Eprint(stdout); + H5Eprint(H5E_DEFAULT, stdout); goto error; } for (i=0; i<NOBJS; i++) { @@ -115,7 +115,7 @@ main(void) if (j>4) buf[j] = '\0'; if (NULL==(s=H5HL_peek(f, H5P_DATASET_XFER_DEFAULT, heap_addr, obj[i]))) { H5_FAILED(); - H5Eprint(stdout); + H5Eprint(H5E_DEFAULT, stdout); goto error; } if (strcmp(s, buf)) { |