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

truncate solver name
parent 54c317f8
No related branches found
No related tags found
No related merge requests found
// $Id: Solvers.cpp,v 1.23 2004-05-15 15:32:32 geuzaine Exp $
// $Id: Solvers.cpp,v 1.24 2004-05-15 16:09:38 geuzaine Exp $
//
// Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle
//
......@@ -123,16 +123,16 @@ int Solver(int num, char *args)
}
break;
case GMSH_CLIENT_INFO:
Msg(SOLVER, "%-7s : %s", SINFO[num].name, str);
Msg(SOLVER, "%-8.8s: %s", SINFO[num].name, str);
break;
case GMSH_CLIENT_WARNING:
case GMSH_CLIENT_ERROR:
Msg(SOLVERR, "%-7s : %s", SINFO[num].name, str);
Msg(SOLVERR, "%-8.8s: %s", SINFO[num].name, str);
break;
default:
Msg(WARNING, "Unknown type of message received from %s",
SINFO[num].name);
Msg(SOLVER, "%-7s : %s", SINFO[num].name, str);
Msg(SOLVER, "%-8.8s: %s", SINFO[num].name, str);
break;
}
if(stop)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment