Browse Source

process.kill doesn't create error obj correctly

v0.7.4-release
Ryan Dahl 13 years ago
parent
commit
2a462abf5f
  1. 2
      src/node.js

2
src/node.js

@ -349,7 +349,7 @@
}
if (r) {
throw errnoException('kill', errno);
throw errnoException(errno, 'kill');
}
};
};

Loading…
Cancel
Save