mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-29 18:27:40 +02:00
Fix Windows build, take 2.
This commit is contained in:
@ -115,7 +115,7 @@ int test::pipe(int fildes[2]) {
|
||||
#else
|
||||
int test::pipe(int *pfds, unsigned psize, int textmode) {
|
||||
EMULATE_EINTR(pipe, -1);
|
||||
return _pipe(fildes, 256, O_BINARY);
|
||||
return _pipe(pfds, psize, textmode);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user