Skip to content

Commit 29ba06f

Browse files
committed
fix non-win build
1 parent c8b0e72 commit 29ba06f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/process.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ namespace proc {
122122
// detached process executing again while the previous process is still running.
123123
_output_pipe.reset(_wfsopen(woutput.c_str(), L"a", _SH_DENYNO));
124124
#else
125-
_output_pipe.reset(fopen(_app.output.c_str(), "a"));
125+
_output_pipe.reset(fopen(_context.output.c_str(), "a"));
126126
#endif
127127
}
128128

0 commit comments

Comments
 (0)