From d5a49e24c688453eeafb39336068b300c4d4382d Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Tue, 28 Feb 2017 08:17:32 +0000
Subject: [PATCH] fix error msgs

---
 Geo/GModelIO_GEO.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Geo/GModelIO_GEO.cpp b/Geo/GModelIO_GEO.cpp
index 22173fdf77..6fe050061e 100644
--- a/Geo/GModelIO_GEO.cpp
+++ b/Geo/GModelIO_GEO.cpp
@@ -718,7 +718,7 @@ void GEO_Internals::setTransfiniteSurface(int tag, int arrangement,
           if(v)
             List_Add(s->TrsfPoints, &v);
           else
-            Msg::Error(0, "Unknown GEO vertex with tag %d", cornerTags[j]);
+            Msg::Error("Unknown GEO vertex with tag %d", cornerTags[j]);
         }
       }
       else{
@@ -752,7 +752,7 @@ void GEO_Internals::setTransfiniteVolume(int tag, std::vector<int> cornerTags)
           if(vert)
             List_Add(v->TrsfPoints, &vert);
           else
-            Msg::Error(0, "Unknown GEO vertex with tag %d", cornerTags[i]);
+            Msg::Error("Unknown GEO vertex with tag %d", cornerTags[i]);
         }
       }
     }
-- 
GitLab