Skip to content

Commit

Permalink
Fix a typo...
Browse files Browse the repository at this point in the history
  • Loading branch information
oneliefleft committed Aug 1, 2014
1 parent e841391 commit acaf690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/deal.II/lac/petsc_vector_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -1298,7 +1298,7 @@ namespace PETScWrappers
ierr = VecGetArray(locally_stored_elements, &ptr);
AssertThrow (ierr == 0, ExcPETScError(ierr));

for (PetscInti=0; i<n_idx; ++i)
for (PetscInt i=0; i<n_idx; ++i)
{
const unsigned int index = *(indices_begin+i);
if ( index>=static_cast<unsigned int>(begin)
Expand Down

0 comments on commit acaf690

Please sign in to comment.