[Gmsh] Typo in meshGFace.cpp

Jose Paulo Moitinho de Almeida moitinho at civil.ist.utl.pt
Thu Jul 19 18:26:59 CEST 2007


Hello

While trying to figure out how to make my mesh work I came across a message that I wasn't understanding 
(it does not mean that I am now ;-)

Looking at the code I realised that it is just a typo in the code:

In Mesh/meshGFace.cpp:583 you have
       Msg(GERROR,"Unable to recover an edge %g %g && %g %g (%d/*d)",vstart->x(),vstart->y(), vend->x(),vend->y(),i,ge->mesh_vertices.size());
but it should be
       Msg(GERROR,"Unable to recover an edge %g %g && %g %g (%d/%d)",vstart->x(),vstart->y(), vend->x(),vend->y(),i,ge->mesh_vertices.size());

(the last %d was somehow transformed into a *d)

Regards

ZP