Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
Fix long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Aug 30, 2011
1 parent 894c005 commit d20233c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/test-fs.c
Expand Up @@ -497,12 +497,14 @@ TEST_IMPL(fs_async_sendfile) {
ASSERT(open_req1.result != -1);
uv_fs_req_cleanup(&open_req1);

r = uv_fs_open(&open_req2, "test_file2", O_WRONLY | O_CREAT, S_IWRITE | S_IREAD, NULL);
r = uv_fs_open(&open_req2, "test_file2", O_WRONLY | O_CREAT,
S_IWRITE | S_IREAD, NULL);
ASSERT(r == 0);
ASSERT(open_req2.result != -1);
uv_fs_req_cleanup(&open_req2);

r = uv_fs_sendfile(&sendfile_req, open_req2.result, open_req1.result, 0, 131072, sendfile_cb);
r = uv_fs_sendfile(&sendfile_req, open_req2.result, open_req1.result, 0,
131072, sendfile_cb);
ASSERT(r == 0);
uv_run();

Expand Down

0 comments on commit d20233c

Please sign in to comment.