[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
This commit is contained in:
Bill Wendling 2002-08-23 14:49:20 -05:00
parent c749cde426
commit 1c2937343e

View File

@ -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);
}
}