[svn-r6372] Purpose:

Buglet
Description:
    The title of the function in FUNC_ENTER_* was wrong.
Solution:
    Changed to correct title.
Platforms tested:
    Linux (small change).
This commit is contained in:
Bill Wendling 2003-02-03 15:44:55 -05:00
parent 9b9c71ffb6
commit fed785b2eb

View File

@ -538,7 +538,7 @@ H5FD_mpio_mpi_size(H5FD_t *_file)
H5FD_mpio_t *file = (H5FD_mpio_t*)_file;
int ret_value; /* Return value */
FUNC_ENTER_NOAPI(H5FD_mpio_mpi_rank, FAIL);
FUNC_ENTER_NOAPI(H5FD_mpio_mpi_size, FAIL);
assert(file);
assert(H5FD_MPIO==file->pub.driver_id);