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

Commit

Permalink
unix: fix warning: comparison between signed and unsigned integer exp…
Browse files Browse the repository at this point in the history
…ressions
  • Loading branch information
bnoordhuis committed Sep 5, 2011
1 parent d917610 commit a9ba756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/fs.c
Expand Up @@ -538,7 +538,7 @@ int uv_fs_symlink(uv_loop_t* loop, uv_fs_t* req, const char* path,

int uv_fs_readlink(uv_loop_t* loop, uv_fs_t* req, const char* path,
uv_fs_cb cb) {
size_t size;
ssize_t size;
int status;
char* buf;

Expand Down

0 comments on commit a9ba756

Please sign in to comment.