Skip to content

Commit

Permalink
printf format fixes - assume Integer fits into int
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffhammond committed Oct 24, 2024
1 parent e4282f0 commit 7346484
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/peigs/src/c/pstein5.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ void pstein5 ( n, dd, ee, dplus, lplus, ld, lld, meigval, eval, iblock, nsplit,


#ifdef DEBUG1
fprintf(stderr, "me = %d In pstein \n", me );
fprintf(stderr, "me = %d In pstein \n", (int)me );
#endif

/*
Expand Down Expand Up @@ -442,7 +442,7 @@ void pstein5 ( n, dd, ee, dplus, lplus, ld, lld, meigval, eval, iblock, nsplit,
if ( isize < 0 ){
*info = -99;
fprintf(stderr, " Node %d: error in clustrf isize = %d neigval = %d \n",
me, isize, neigval );
(int)me, (int)isize, (int)neigval );
xstop_( info );
}

Expand Down

0 comments on commit 7346484

Please sign in to comment.