diff --git a/Common/DefaultOptions.h b/Common/DefaultOptions.h index 3d206e35d97fdaf3c49ed84633f9d6bdfa2e6c7f..2d9d8e6fd69775ac57d7a63c3b3626463eb79f7c 100644 --- a/Common/DefaultOptions.h +++ b/Common/DefaultOptions.h @@ -895,7 +895,7 @@ StringXNumber MeshOptions_Number[] = { "Field format for Nastran BDF files (0=free, 1=small, 2=large)" }, { F|O, "CharacteristicLengthFactor" , opt_mesh_lc_factor , 1.0 , "Factor applied to all characteristic lengths" }, - { F|O, "CharacteristicLengthFactor" , opt_mesh_lc_min, 0.0 , + { F|O, "CharacteristicLengthMin" , opt_mesh_lc_min, 0.0 , "Minimum mesh size" }, { F|O, "CharacteristicLengthFromCurvature" , opt_mesh_lc_from_curvature , 0. , "Compute characteritic lenghts automatically from curvatures" }, diff --git a/Mesh/meshGEdge.cpp b/Mesh/meshGEdge.cpp index 87c8e17b78016e5bd9b2295ce7a670405c7ce7e5..07f9d3d855837aee1d3e6d44ca6b8ebd68416eee 100644 --- a/Mesh/meshGEdge.cpp +++ b/Mesh/meshGEdge.cpp @@ -1,4 +1,4 @@ -// $Id: meshGEdge.cpp,v 1.47 2008-01-14 21:29:14 remacle Exp $ +// $Id: meshGEdge.cpp,v 1.48 2008-01-15 14:54:56 geuzaine Exp $ // // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // @@ -310,7 +310,7 @@ void meshGEdge::operator() (GEdge *ge) // Send a messsage to the GMSH environment if (length == 0.0) - Msg(GERROR,"Curve %d has a zero length\n",ge->tag()); + Msg(GERROR,"Curve %d has a zero length", ge->tag()); List_Reset(Points);