RemotePlugin: fixed compiler warning

Just a minor signed/unsigned int issue.
This commit is contained in:
Tobias Doerffel
2010-12-23 22:21:14 +01:00
parent 52543d4d8c
commit 5143b6ad21

View File

@@ -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] );
}