fix linux build

svn path=/trunk/; revision=28859
This commit is contained in:
Christoph von Wittich
2007-09-04 21:12:27 +00:00
parent cc461f5920
commit 4bfe0df0be
+2 -2
View File
@@ -201,7 +201,7 @@ namespace System_
}
}
//---------------------------------------------------------------------------------------
bool NamedPipeReader::readPipe(char * buffer, int bufferlength, long & read)
bool NamedPipeReader::readPipe(char * buffer, int bufferlength, long & bytesread)
{
#ifdef __LINUX__
@@ -220,7 +220,7 @@ namespace System_
return false;
#endif
read = cbRead;
bytesread = cbRead;
return true;
}
//---------------------------------------------------------------------------------------