certi-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[certi-cvs] certi RTIG/RTIG_processing.cc RTIA/FederationMa...


From: certi-cvs
Subject: [certi-cvs] certi RTIG/RTIG_processing.cc RTIA/FederationMa...
Date: Wed, 16 Sep 2009 07:56:32 +0000

CVSROOT:        /sources/certi
Module name:    certi
Changes by:     Eric NOULARD <erk>      09/09/16 07:56:32

Modified files:
        RTIG           : RTIG_processing.cc 
        RTIA           : FederationManagement.cc 

Log message:
        Suppress signed/unsigned comparison error

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/certi/RTIG/RTIG_processing.cc?cvsroot=certi&r1=3.85&r2=3.86
http://cvs.savannah.gnu.org/viewcvs/certi/RTIA/FederationManagement.cc?cvsroot=certi&r1=3.71&r2=3.72

Patches:
Index: RTIG/RTIG_processing.cc
===================================================================
RCS file: /sources/certi/certi/RTIG/RTIG_processing.cc,v
retrieving revision 3.85
retrieving revision 3.86
diff -u -b -r3.85 -r3.86
--- RTIG/RTIG_processing.cc     14 Sep 2009 21:21:32 -0000      3.85
+++ RTIG/RTIG_processing.cc     16 Sep 2009 07:56:31 -0000      3.86
@@ -18,7 +18,7 @@
 // along with this program ; if not, write to the Free Software
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 //
-// $Id: RTIG_processing.cc,v 3.85 2009/09/14 21:21:32 erk Exp $
+// $Id: RTIG_processing.cc,v 3.86 2009/09/16 07:56:31 erk Exp $
 // ----------------------------------------------------------------------------
 
 #include <config.h>
@@ -250,7 +250,7 @@
         // RTIA has opened working file then RTIG has to transfer file contents
         // line by line
         std::string fileLine;
-        int num_line = 0 ;
+        unsigned int num_line = 0 ;
         while (!fedFile.eof())
             {
             num_line++;
@@ -1552,4 +1552,4 @@
 
 }} // namespace certi/rtig
 
-// $Id: RTIG_processing.cc,v 3.85 2009/09/14 21:21:32 erk Exp $
+// $Id: RTIG_processing.cc,v 3.86 2009/09/16 07:56:31 erk Exp $

Index: RTIA/FederationManagement.cc
===================================================================
RCS file: /sources/certi/certi/RTIA/FederationManagement.cc,v
retrieving revision 3.71
retrieving revision 3.72
diff -u -b -r3.71 -r3.72
--- RTIA/FederationManagement.cc        14 Sep 2009 21:21:32 -0000      3.71
+++ RTIA/FederationManagement.cc        16 Sep 2009 07:56:31 -0000      3.72
@@ -18,7 +18,7 @@
 // along with this program ; if not, write to the Free Software
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 //
-// $Id: FederationManagement.cc,v 3.71 2009/09/14 21:21:32 erk Exp $
+// $Id: FederationManagement.cc,v 3.72 2009/09/16 07:56:31 erk Exp $
 // ----------------------------------------------------------------------------
 
 #include <config.h>
@@ -356,7 +356,7 @@
             comm->sendMessage(&requeteFED);
     
             // Now read loop from RTIG to get line contents and then write it 
into file            
-            int num_line = 0 ; // no line read            
+            unsigned int num_line = 0 ; // no line read
             for (;;)
                 {              
                 reponse.reset(comm->waitMessage(NetworkMessage::GET_FED_FILE, 
0));




reply via email to

[Prev in Thread] Current Thread [Next in Thread]