From 29ba06ffb31681b1fafec734e58fc019e4d7a636 Mon Sep 17 00:00:00 2001 From: FrogTheFrog Date: Wed, 29 Jan 2025 17:07:47 +0200 Subject: [PATCH] fix non-win build --- src/process.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.cpp b/src/process.cpp index 23c745e04f6..67ad219bf72 100644 --- a/src/process.cpp +++ b/src/process.cpp @@ -122,7 +122,7 @@ namespace proc { // detached process executing again while the previous process is still running. _output_pipe.reset(_wfsopen(woutput.c_str(), L"a", _SH_DENYNO)); #else - _output_pipe.reset(fopen(_app.output.c_str(), "a")); + _output_pipe.reset(fopen(_context.output.c_str(), "a")); #endif }