From 5143b6ad213c3eae94026c8ce2b5766c05dfcdba Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Thu, 23 Dec 2010 22:21:14 +0100 Subject: [PATCH] RemotePlugin: fixed compiler warning Just a minor signed/unsigned int issue. --- include/RemotePlugin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/RemotePlugin.h b/include/RemotePlugin.h index 1292150e1..fb60a06f2 100644 --- a/include/RemotePlugin.h +++ b/include/RemotePlugin.h @@ -927,7 +927,7 @@ void RemotePluginBase::sendMessage( const message & _m ) m_out->lock(); m_out->writeInt( _m.id ); m_out->writeInt( n ); - for( unsigned int i = 0; i < n; ++i ) + for( int i = 0; i < n; ++i ) { m_out->writeString( _m.data[i] ); }