From f390cd46c2803dcc7e7d4d351a3c5ed9f69c3475 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Sat, 12 Jun 2010 10:56:47 +0000
Subject: [PATCH] fix compile

---
 Geo/GFaceCompound.cpp      |  2 +-
 Solver/linearSystemCSR.h   | 10 +++++-----
 Solver/linearSystemPETSc.h | 10 +++++-----
 3 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/Geo/GFaceCompound.cpp b/Geo/GFaceCompound.cpp
index 7f91547ba4..9b82c5526a 100644
--- a/Geo/GFaceCompound.cpp
+++ b/Geo/GFaceCompound.cpp
@@ -1461,7 +1461,7 @@ GPoint GFaceCompound::point(double par1, double par2) const
 
     //curved PN triangle
     //-------------------------
-    printf("normals size=%d vertex=%d \n", _normals.size(), lt->tri->getVertex(0)->getNum());
+    printf("normals size=%d vertex=%d \n", (int)_normals.size(), lt->tri->getVertex(0)->getNum());
     const SVector3 n1 = _normals[lt->tri->getVertex(0)];
     const SVector3 n2 = _normals[lt->tri->getVertex(1)];
     const SVector3 n3 = _normals[lt->tri->getVertex(2)];
diff --git a/Solver/linearSystemCSR.h b/Solver/linearSystemCSR.h
index a83561e326..3db4c5fffa 100644
--- a/Solver/linearSystemCSR.h
+++ b/Solver/linearSystemCSR.h
@@ -113,14 +113,14 @@ class linearSystemCSR : public linearSystem<scalar> {
   {
     for(unsigned int i = 0; i < _b->size(); i++) (*_b)[i] = 0.;
   }
-  virtual double normInfRightHandSide() const{
+  virtual double normInfRightHandSide() const
+  {
     double nor = 0.;
     double temp;
-    for(int i=0;i<_b->size();i++){
+    for(unsigned int i = 0; i < _b->size(); i++){
       temp = (*_b)[i];
-      if(temp<0) temp = -temp;
-      if(nor<temp) nor=temp;
-
+      if(temp < 0) temp = -temp;
+      if(nor < temp) nor = temp;
     }
     return nor;
   }
diff --git a/Solver/linearSystemPETSc.h b/Solver/linearSystemPETSc.h
index 32cc3b0d1c..b2c1568a0c 100644
--- a/Solver/linearSystemPETSc.h
+++ b/Solver/linearSystemPETSc.h
@@ -106,11 +106,11 @@ class linearSystemPETSc : public linearSystem<scalar> {
     val = s;
 #endif
   }
-  virtual double normInfRightHandSide() const {
-  PetscScalar nor;
-  _try(VecNorm(_b,NORM_INFINITY,&nor));
-  return nor;
-
+  virtual double normInfRightHandSide() const
+  {
+    PetscReal nor;
+    _try(VecNorm(_b, NORM_INFINITY, &nor));
+    return nor;
   }
   virtual void addToMatrix(int row, int col, const scalar &val)
   {
-- 
GitLab