Author: cwittich
Date: Wed Sep 5 01:12:27 2007
New Revision: 28859
URL:
http://svn.reactos.org/svn/reactos?rev=28859&view=rev
Log:
fix linux build
Modified:
trunk/reactos/tools/sysreg/namedpipe_reader.cpp
Modified: trunk/reactos/tools/sysreg/namedpipe_reader.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/sysreg/namedpipe_rea…
==============================================================================
--- trunk/reactos/tools/sysreg/namedpipe_reader.cpp (original)
+++ trunk/reactos/tools/sysreg/namedpipe_reader.cpp Wed Sep 5 01:12:27 2007
@@ -201,7 +201,7 @@
}
}
//---------------------------------------------------------------------------------------
- bool NamedPipeReader::readPipe(char * buffer, int bufferlength, long & read)
+ bool NamedPipeReader::readPipe(char * buffer, int bufferlength, long &
bytesread)
{
#ifdef __LINUX__
@@ -220,7 +220,7 @@
return false;
#endif
- read = cbRead;
+ bytesread = cbRead;
return true;
}
//---------------------------------------------------------------------------------------