|
From: <rus...@us...> - 2008-03-18 06:43:26
|
Revision: 102
http://gearbox.svn.sourceforge.net/gearbox/?rev=102&view=rev
Author: russo2503v
Date: 2008-03-17 23:43:26 -0700 (Mon, 17 Mar 2008)
Log Message:
-----------
fixed uint warning.
Modified Paths:
--------------
gearbox/trunk/src/gbxsickacfr/driver.cpp
Modified: gearbox/trunk/src/gbxsickacfr/driver.cpp
===================================================================
--- gearbox/trunk/src/gbxsickacfr/driver.cpp 2008-03-18 06:41:19 UTC (rev 101)
+++ gearbox/trunk/src/gbxsickacfr/driver.cpp 2008-03-18 06:43:26 UTC (rev 102)
@@ -412,7 +412,7 @@
// Perhaps there's some crap left in the buffer after the thing
// was previously in continuous mode?
const int MAX_TRIES=3;
- for ( uint i=0; i < MAX_TRIES; i++ )
+ for ( int i=0; i < MAX_TRIES; i++ )
{
try {
constructRequestMeasuredOnRequestMode( commandAndData_ );
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|