Browse Source

src: fix deprecation message for ErrnoException

Fix copy paste error in deprecation message

PR-URL: https://github.com/nodejs/node/pull/4269
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
Reviewed-By: Rod Vagg <r@va.gg>
v5.x
Martin von Gagern 9 years ago
committed by cjihrig
parent
commit
914af0b68a
  1. 2
      src/node.h

2
src/node.h

@ -96,7 +96,7 @@ NODE_EXTERN v8::Local<v8::Value> UVException(v8::Isolate* isolate,
const char* path,
const char* dest);
NODE_DEPRECATED("Use UVException(isolate, ...)",
NODE_DEPRECATED("Use ErrnoException(isolate, ...)",
inline v8::Local<v8::Value> ErrnoException(
int errorno,
const char* syscall = NULL,

Loading…
Cancel
Save