Skip to content

Commit

Permalink
Fix wrong integer size.
Browse files Browse the repository at this point in the history
  • Loading branch information
Algiane committed Sep 12, 2023
1 parent fec3aee commit a7755c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mmg3d/colver_3d.c
Original file line number Diff line number Diff line change
Expand Up @@ -624,8 +624,8 @@ int MMG5_chkcol_bdy(MMG5_pMesh mesh,MMG5_pSol met,MMG5_int k,int8_t iface,
* shell because some MG_BDY tags may be missings due to the creation
* of an xtetra during a previous collapse */
if ( !(pxt->ftag[i] & MG_BDY) ) {
int16_t tag0,tag1,tag2;
int ref0,ref1,ref2;
int16_t tag0,tag1,tag2;
MMG5_int ref0,ref1,ref2;

tag0 = tag1 = tag2 = 0;
ref0 = ref1 = ref2 = 0;
Expand Down

0 comments on commit a7755c7

Please sign in to comment.