1
1

don't use rank or nprocs in error messages when we don't have them..

This should hit 1.1 and 1.0 branches.. 
Reviewed by Brian

This commit was SVN r10164.
Этот коммит содержится в:
Galen Shipman 2006-06-01 14:24:11 +00:00
родитель 0344ae4ac5
Коммит 83ff3201b5

Просмотреть файл

@ -16,8 +16,7 @@ int ADIOI_TESTFS_ReadDone(ADIO_Request *request, ADIO_Status *status, int
*error_code = MPI_SUCCESS;
if (*request == ADIO_REQUEST_NULL) {
FPRINTF(stdout, "[%d/%d] ADIOI_TESTFS_ReadDone called on ADIO_REQUEST_NULL\n",
myrank, nprocs);
FPRINTF(stdout, "ADIOI_TESTFS_ReadDone called on ADIO_REQUEST_NULL\n");
return 1;
}
@ -43,8 +42,7 @@ int ADIOI_TESTFS_WriteDone(ADIO_Request *request, ADIO_Status *status, int
*error_code = MPI_SUCCESS;
if (*request == ADIO_REQUEST_NULL) {
FPRINTF(stdout, "[%d/%d] ADIOI_TESTFS_WriteDone called on ADIO_REQUEST_NULL\n",
myrank, nprocs);
FPRINTF(stdout, "ADIOI_TESTFS_WriteDone called on ADIO_REQUEST_NULL\n");
return 1;
}