From e79db9e3cfb6445c6014d3712828bad04381d4b1 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Wed, 5 Dec 2001 10:53:11 +0000
Subject: [PATCH] fix msg for bb build

---
 Box/Main.cpp | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/Box/Main.cpp b/Box/Main.cpp
index 107fe80d71..0dcd0338bb 100644
--- a/Box/Main.cpp
+++ b/Box/Main.cpp
@@ -1,4 +1,4 @@
-// $Id: Main.cpp,v 1.13 2001-12-05 10:17:51 geuzaine Exp $
+// $Id: Main.cpp,v 1.14 2001-12-05 10:53:11 geuzaine Exp $
 
 #include <signal.h>
 #include "ParUtil.h"
@@ -79,10 +79,10 @@ int main(int argc, char *argv[]){
 
   ParUtil::Instance()->init(argc,argv);
 
-  if(argc < 2) Info(0,argv[0]);
-
   Init_Options(0);
 
+  if(argc < 2) Info(0,argv[0]);
+
   Get_Options(argc, argv, &nbf);
 
   M.Vertices = NULL ;
@@ -165,8 +165,9 @@ void Msg(int level, char *fmt, ...){
   switch(level){
 
   case DIRECT :
-    if(CTX.verbosity >=2 && ParUtil::Instance()->master()) 
+    if(CTX.verbosity >=2 && ParUtil::Instance()->master()) {
      vfprintf(stdout, fmt, args); fprintf(stdout, "\n");
+    }
     break;
 
   case FATAL :
-- 
GitLab