diff --git a/Mesh/Generator.cpp b/Mesh/Generator.cpp
index faa147102c880e90f139905efca18f20270eacbe..9270d99eed6d2db713fdc3485e84792d519ba492 100644
--- a/Mesh/Generator.cpp
+++ b/Mesh/Generator.cpp
@@ -303,8 +303,8 @@ static bool CancelDelaunayHybrid(GModel *m)
     return !Msg::GetBinaryAnswer
       ("You are trying to generate a mixed structured/unstructured grid using\n"
        "the 3D Delaunay algorithm. This algorithm cannot garantee that the\n"
-       "final mesh will be conforming. You should probably use the Frontal\n"
-       "Netgen algorithm instead. Do you really want to continue?\n\n"
+       "final mesh will be conforming. You should probably use the 3D Frontal\n"
+       "algorithm instead. Do you really want to continue?\n\n"
        "(To disable this warning in the future, select `Enable expert mode'\n"
        "in the option dialog.)",
        "Continue", "Cancel");
diff --git a/Parser/Gmsh.tab.cpp b/Parser/Gmsh.tab.cpp
index 1670544c546995a0bbe0c9740abb1eb346fb1668..8296588f784a482aeee90c7e3b048f346f70453b 100644
--- a/Parser/Gmsh.tab.cpp
+++ b/Parser/Gmsh.tab.cpp
@@ -6594,7 +6594,7 @@ yyreduce:
                 ge->meshAttributes.typeTransfinite = type * sign(d);
                 ge->meshAttributes.coeffTransfinite = coef;
               }
-              else if(j > 0)
+              else if(sign > 0)
                 yymsg(0, "Unknown line %d", j);
             }
           }
diff --git a/Parser/Gmsh.y b/Parser/Gmsh.y
index c523d27f3c9e3b31445102e2cf742f714352ca5b..f0e19e45465d92aba7141cc5b928a89873cd0c7c 100644
--- a/Parser/Gmsh.y
+++ b/Parser/Gmsh.y
@@ -2576,7 +2576,7 @@ Transfinite :
                 ge->meshAttributes.typeTransfinite = type * sign(d);
                 ge->meshAttributes.coeffTransfinite = coef;
               }
-              else if(j > 0)
+              else if(sign > 0)
                 yymsg(0, "Unknown line %d", j);
             }
           }
diff --git a/benchmarks/step/tank.geo b/benchmarks/step/tank.geo
index 92a7258f189bd12361ac1589318078037ca49229..123aefd78d9a2f71120109761a302fc5d7438856 100644
--- a/benchmarks/step/tank.geo
+++ b/benchmarks/step/tank.geo
@@ -1,5 +1,5 @@
-Geometry.OCCFixSmallEdges=1;
-Geometry.OCCFixSmallFaces=1;
+Geometry.OCCFixSmallEdges = 1;
+Geometry.OCCFixSmallFaces = 1;
 
 Merge "tank.brep";