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

Commit

Permalink
unix: fix fs_chmod
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Sep 4, 2011
1 parent 826db45 commit 142a702
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion src/unix/core.c
Expand Up @@ -323,7 +323,6 @@ int64_t uv_now(uv_loop_t* loop) {
void uv__req_init(uv_req_t* req) {
/* loop->counters.req_init++; */
req->type = UV_UNKNOWN_REQ;
req->data = NULL;
}


Expand Down
1 change: 1 addition & 0 deletions test/test-fs.c
Expand Up @@ -760,6 +760,7 @@ TEST_IMPL(fs_chmod) {
ASSERT(r == 0);
uv_run(loop);
ASSERT(chmod_cb_count == 1);
chmod_cb_count = 0; /* reset for the next test */
#endif

/* async chmod */
Expand Down

0 comments on commit 142a702

Please sign in to comment.