aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs')
-rw-r--r--src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs b/src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs
index b1ed7b68..4802178e 100644
--- a/src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs
+++ b/src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs
@@ -29,10 +29,10 @@ namespace Ryujinx.Common.SystemInterop
[SupportedOSPlatform("macos")]
private void RegisterPosix()
{
- const int stdErrFileno = 2;
+ const int StdErrFileno = 2;
(int readFd, int writeFd) = MakePipe();
- dup2(writeFd, stdErrFileno);
+ dup2(writeFd, StdErrFileno);
_pipeReader = CreateFileDescriptorStream(readFd);
_pipeWriter = CreateFileDescriptorStream(writeFd);