unix: fix warning: comparison between signed and unsigned integer expressions

This commit is contained in:
Ben Noordhuis 2011-09-05 15:04:16 +02:00
parent d9176108d2
commit a9ba756bfd

View File

@ -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;