diff --git a/Common/Views.cpp b/Common/Views.cpp index ceca17c1131388fc97c80daba5c85513280bf862..5ce4e860f11393e17c6330d6c5ca744e55d7fdaa 100644 --- a/Common/Views.cpp +++ b/Common/Views.cpp @@ -1,4 +1,4 @@ -// $Id: Views.cpp,v 1.93 2003-03-21 00:52:35 geuzaine Exp $ +// $Id: Views.cpp,v 1.94 2003-04-14 22:55:56 geuzaine Exp $ // // Copyright (C) 1997-2003 C. Geuzaine, J.-F. Remacle // @@ -1363,7 +1363,7 @@ static void merge(List_T * a, List_T * b) void MergeViews(int all) { // sanity check - int first = 1, nbt; + int first = 1, nbt = 0; for(int i = 0; i < List_Nbr(CTX.post.list) - 1; i++) { Post_View *v = (Post_View *) List_Pointer(CTX.post.list, i); if(all || v->Visible) { diff --git a/Graphics/gl2ps.cpp b/Graphics/gl2ps.cpp index b5db318ead29548d971b7a842e3bbc919874c1cc..587053c45e8d80dbd6010280ea39b2ea29f10360 100644 --- a/Graphics/gl2ps.cpp +++ b/Graphics/gl2ps.cpp @@ -2,7 +2,7 @@ * GL2PS, an OpenGL to PostScript Printing Library * Copyright (C) 1999-2003 Christophe Geuzaine * - * $Id: gl2ps.cpp,v 1.63 2003-03-10 16:21:38 geuzaine Exp $ + * $Id: gl2ps.cpp,v 1.64 2003-04-14 22:55:56 geuzaine Exp $ * * E-mail: geuz@geuz.org * URL: http://www.geuz.org/gl2ps/ @@ -1319,7 +1319,7 @@ void gl2psPrintPostScriptPixmap(GLfloat x, GLfloat y, GLsizei width, GLsizei hei FILE *stream){ typedef unsigned char Uchar; int status = 1, nbhex, nbyte2, nbyte4, nbyte8; - unsigned int row, col, col_max; + GLsizei row, col, col_max; float dr, dg, db, fgrey; Uchar red, green, blue, b, grey; /* FIXME: this has to be generalized... */ diff --git a/Mesh/Read_Mesh.cpp b/Mesh/Read_Mesh.cpp index 8da9e038136aabbba01a19c2707878bc1c84a55a..df4ed708a8a6c27053eddb2475deac0c256911af 100644 --- a/Mesh/Read_Mesh.cpp +++ b/Mesh/Read_Mesh.cpp @@ -1,4 +1,4 @@ -// $Id: Read_Mesh.cpp,v 1.53 2003-03-21 00:52:41 geuzaine Exp $ +// $Id: Read_Mesh.cpp,v 1.54 2003-04-14 22:55:56 geuzaine Exp $ // // Copyright (C) 1997-2003 C. Geuzaine, J.-F. Remacle // @@ -90,7 +90,7 @@ void Read_Mesh_MSH(Mesh * M, FILE * File_GEO) { char String[256]; int Nbr_Nodes, Nbr_Elements, i_Node, i_Element; - int Num, Type, Physical, Elementary, i, j, replace; + int Num, Type, Physical, Elementary, i, j; double x, y, z, lc1, lc2; Vertex *vert, verts[NB_NOD_MAX_ELM], *vertsp[NB_NOD_MAX_ELM], **vertspp; Simplex *simp;