fix compilation on linux

svn path=/trunk/; revision=28837
This commit is contained in:
Christoph von Wittich 2007-09-04 11:10:17 +00:00
parent 9187115f22
commit e7b744d5c5

View file

@ -126,7 +126,7 @@ namespace System_
void OsSupport::delayExecution(long value) void OsSupport::delayExecution(long value)
{ {
sleep( (clock_t)m_Delayread * CLOCKS_PER_SEC ); sleep( (clock_t)value * CLOCKS_PER_SEC );
} }