mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-26 07:16:11 -05:00
Fixed compile error on Windows.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5710 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
3d4869e226
commit
e92ef1a1be
@ -33,6 +33,8 @@
|
||||
StdioComms::StdioComms(int infd, int outfd)
|
||||
:mIn(infd), mOut(outfd)
|
||||
{
|
||||
// fcntl not available on Windows, search alternative when needed
|
||||
#ifndef WINDOWS_SYS
|
||||
#if 1
|
||||
// THIS Code is strange...
|
||||
// It seems to mess up stderr.
|
||||
@ -57,6 +59,7 @@ StdioComms::StdioComms(int infd, int outfd)
|
||||
std::cerr << "StdioComms() STDERR msg 1";
|
||||
std::cerr << std::endl;
|
||||
#endif
|
||||
#endif // WINDOWS_SYS
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user