summaryrefslogtreecommitdiffstats
path: root/src/H5AC.c
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2003-10-22 21:02:26 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2003-10-22 21:02:26 (GMT)
commitecf3e6dc45fa3d2a41daf937f19f8ab5dd1ad421 (patch)
tree4c9f65ccb07be262227853c44bb3baf536420ff4 /src/H5AC.c
parent429079fc1167acceb8b143b6b7d85da3e60343ac (diff)
downloadhdf5-ecf3e6dc45fa3d2a41daf937f19f8ab5dd1ad421.zip
hdf5-ecf3e6dc45fa3d2a41daf937f19f8ab5dd1ad421.tar.gz
hdf5-ecf3e6dc45fa3d2a41daf937f19f8ab5dd1ad421.tar.bz2
[svn-r7696] Purpose:
Message Correction Description: Uncapitalized the beginning of the error messages. Solution: Platforms tested: Linux (Very small change). Misc. update:
Diffstat (limited to 'src/H5AC.c')
-rw-r--r--src/H5AC.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5AC.c b/src/H5AC.c
index 89ef2d9..6361b0e 100644
--- a/src/H5AC.c
+++ b/src/H5AC.c
@@ -1289,7 +1289,7 @@ H5AC_protect(H5F_t *f, hid_t dxpl_id, const H5AC_class_t *type, haddr_t addr,
* out of this function
*/
HDfprintf(stderr, "Couldn't get lock for metadata at address %a\n", addr);
- HGOTO_ERROR(H5E_FPHDF5, H5E_CANTLOCK, NULL, "Can't lock data on SAP!")
+ HGOTO_ERROR(H5E_FPHDF5, H5E_CANTLOCK, NULL, "can't lock data on SAP!")
}
/* Load a thing from the SAP. */
@@ -1298,7 +1298,7 @@ HDfprintf(stderr, "Couldn't get lock for metadata at address %a\n", addr);
if (H5FP_request_release_lock(H5FD_fphdf5_file_id(lf), addr,
TRUE, &req_id, &status) < 0)
- HGOTO_ERROR(H5E_FPHDF5, H5E_CANTUNLOCK, NULL, "Can't unlock data on SAP!")
+ HGOTO_ERROR(H5E_FPHDF5, H5E_CANTUNLOCK, NULL, "can't unlock data on SAP!")
HGOTO_DONE(NULL);
}
@@ -1531,7 +1531,7 @@ H5AC_unprotect(H5F_t *f, hid_t dxpl_id, const H5AC_class_t *type, haddr_t addr,
*/
if (H5FP_request_release_lock(H5FD_fphdf5_file_id(lf), addr,
TRUE, &req_id, &status) < 0)
- HGOTO_ERROR(H5E_FPHDF5, H5E_CANTUNLOCK, FAIL, "Can't unlock data on SAP!")
+ HGOTO_ERROR(H5E_FPHDF5, H5E_CANTUNLOCK, FAIL, "can't unlock data on SAP!")
/* Flush a thing to the SAP */
if (thing) {