Skip to content

Commit

Permalink
fix non-win build
Browse files Browse the repository at this point in the history
  • Loading branch information
FrogTheFrog committed Jan 29, 2025
1 parent c8b0e72 commit 29ba06f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/process.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 29ba06f

Please sign in to comment.