<font size=2 face="sans-serif">xlf9014.1  reported error for the
below FORTRAN 90 code:</font>
<br>
<br><font size=2 face="sans-serif">******</font>
<br><font size=2 face="sans-serif">MatNullSpace   nullsp</font>
<br><font size=2 face="sans-serif">PetscErrorCode   :: ierr</font>
<br><font size=2 face="sans-serif">call MatNullSpaceCreate( PETSC_COMM_WORLD,
PETSC_TRUE, 0, PETSC_NULL_INTEGER, nullsp, ierr );<br>
****</font>
<br><font size=2 face="sans-serif">The error message is:</font>
<br><font size=2 face="sans-serif"> Actual argument attributes do
not match those specified by an accessible explicit interface.</font>
<br>
<br><font size=2 face="sans-serif">The error implies the real argument
the attribute of "PETSC_NULL_INTEGER" does not match with those
specified by the interface.  The interface of MatNullSpaceCreate is
declared in finclude/ftn-auto/petscmat.h90 ,  whose 4th dummy argument
is declared as</font>
<br><font size=2 face="sans-serif">     Vec vecs (*) </font>
<br>
<br><font size=2 face="sans-serif">In my code,  PETSC_NULL_INTEGER
is passed to an array of Vec.   Is there anything wrong here?</font>
<br>
<br><font size=2 face="sans-serif">thanks,</font>
<br><font size=2 face="sans-serif">Mi</font>