test: fix test-fork for new file API

PR-URL: https://github.com/libuv/libuv/pull/1413
Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
This commit is contained in:
Saúl Ibarra Corretgé 2017-07-09 14:27:14 +02:00
parent 9602952bb5
commit e51180add1

View File

@ -348,7 +348,7 @@ TEST_IMPL(fork_signal_to_child_closed) {
static void create_file(const char* name) {
int r;
uv_file file;
uv_os_fd_t file;
uv_fs_t req;
r = uv_fs_open(NULL, &req, name, O_WRONLY | O_CREAT, S_IWUSR | S_IRUSR, NULL);
@ -363,7 +363,7 @@ static void create_file(const char* name) {
static void touch_file(const char* name) {
int r;
uv_file file;
uv_os_fd_t file;
uv_fs_t req;
uv_buf_t buf;