Skip to content

Commit

Permalink
Fix UVException errno bug
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus authored and Bert Belder committed Dec 2, 2011
1 parent ded97eb commit 641f2be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ Local<Value> UVException(int errorno,
if (!msg || !msg[0])
msg = get_uv_errno_message(errorno);

Local<String> estring = String::NewSymbol(errno_string(errorno));
Local<String> estring = String::NewSymbol(get_uv_errno_string(errorno));
Local<String> message = String::NewSymbol(msg);
Local<String> cons1 = String::Concat(estring, String::NewSymbol(", "));
Local<String> cons2 = String::Concat(cons1, message);
Expand Down

0 comments on commit 641f2be

Please sign in to comment.