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

Commit

Permalink
One more EACCESS -> EACCES
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Nov 3, 2011
1 parent 681bd29 commit 9c7ed0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uv-common.c
Expand Up @@ -57,7 +57,7 @@ const char* uv_err_name(uv_err_t err) {
case UV_OK: return "OK";
case UV_EOF: return "EOF";
case UV_EADDRINFO: return "EADDRINFO";
case UV_EACCES: return "EACCESS";
case UV_EACCES: return "EACCES";
case UV_EAGAIN: return "EAGAIN";
case UV_EADDRINUSE: return "EADDRINUSE";
case UV_EADDRNOTAVAIL: return "EADDRNOTAVAIL";
Expand Down

0 comments on commit 9c7ed0d

Please sign in to comment.