Skip to content

Commit

Permalink
Merge pull request #255 from coprigent/feature/fix-warning-int-type
Browse files Browse the repository at this point in the history
Fixed minor warning related to integer types
  • Loading branch information
Algiane authored Mar 21, 2024
2 parents 72d5981 + cd4a33b commit d5c43d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mmg3d/mmg3d3.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ static MMG5_int MMG5_spllag(MMG5_pMesh mesh,MMG5_pSol disp,MMG5_pSol met,int itd
MMG5_int ref = 0;
if ( !MMG3D_get_shellEdgeTag(mesh,k,i,&tag,&ref) ) {
fprintf(stderr,"\n ## Warning: %s: 0. unable to get edge info"
" (tetra %d).\n",__func__,MMG3D_indElt(mesh,k));
" (tetra %" MMG5_PRId").\n",__func__,MMG3D_indElt(mesh,k));
continue;
}

Expand Down

0 comments on commit d5c43d1

Please sign in to comment.