summaryrefslogtreecommitdiffstats
path: root/perform
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-08-23 19:49:20 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-08-23 19:49:20 (GMT)
commit1c2937343ec131be49bb03d72edd986b51e08384 (patch)
tree1abc22ea2ecbd9e38d282abacd5e321bf9873f1a /perform
parentc749cde42677693e5376c3232de3550cdc767d1d (diff)
downloadhdf5-1c2937343ec131be49bb03d72edd986b51e08384.zip
hdf5-1c2937343ec131be49bb03d72edd986b51e08384.tar.gz
hdf5-1c2937343ec131be49bb03d72edd986b51e08384.tar.bz2
[svn-r5890] Purpose:
Bug Fix Description: Some more naming mistakes. Solution: Stopped calling it ds_start and calling the structure its real name. Platforms tested: NERSC
Diffstat (limited to 'perform')
-rw-r--r--perform/pio_engine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/perform/pio_engine.c b/perform/pio_engine.c
index 596dde2..8af34a1 100644
--- a/perform/pio_engine.c
+++ b/perform/pio_engine.c
@@ -1709,7 +1709,7 @@ gpfs_access_range(int handle, off_t start, off_t length, int is_write)
if (gpfs_fcntl(handle, &access_range) != 0) {
fprintf(stderr,
"gpfs_fcntl DS start directive failed. errno=%d errorOffset=%d\n",
- errno, ds_start.hdr.errorOffset);
+ errno, access_range.hdr.errorOffset);
exit(EXIT_FAILURE);
}
}
@@ -1845,7 +1845,7 @@ gpfs_cancel_hints(int handle)
if (gpfs_fcntl(handle, &cancel_hints) != 0) {
fprintf(stderr,
"gpfs_fcntl cancel hints directive failed. errno=%d errorOffset=%d\n",
- errno, ds_start.hdr.errorOffset);
+ errno, cancel_hints.hdr.errorOffset);
exit(EXIT_FAILURE);
}
}