Skip to content
Snippets Groups Projects
Commit d5a49e24 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix error msgs

parent 4497d08c
No related branches found
No related tags found
No related merge requests found
...@@ -718,7 +718,7 @@ void GEO_Internals::setTransfiniteSurface(int tag, int arrangement, ...@@ -718,7 +718,7 @@ void GEO_Internals::setTransfiniteSurface(int tag, int arrangement,
if(v) if(v)
List_Add(s->TrsfPoints, &v); List_Add(s->TrsfPoints, &v);
else else
Msg::Error(0, "Unknown GEO vertex with tag %d", cornerTags[j]); Msg::Error("Unknown GEO vertex with tag %d", cornerTags[j]);
} }
} }
else{ else{
...@@ -752,7 +752,7 @@ void GEO_Internals::setTransfiniteVolume(int tag, std::vector<int> cornerTags) ...@@ -752,7 +752,7 @@ void GEO_Internals::setTransfiniteVolume(int tag, std::vector<int> cornerTags)
if(vert) if(vert)
List_Add(v->TrsfPoints, &vert); List_Add(v->TrsfPoints, &vert);
else else
Msg::Error(0, "Unknown GEO vertex with tag %d", cornerTags[i]); Msg::Error("Unknown GEO vertex with tag %d", cornerTags[i]);
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment