projects
/
platform
/
upstream
/
nodejs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
05727f6
)
process.kill doesn't create error obj correctly
author
Ryan Dahl
<ry@tinyclouds.org>
Wed, 9 Nov 2011 00:58:32 +0000
(16:58 -0800)
committer
Ryan Dahl
<ry@tinyclouds.org>
Wed, 9 Nov 2011 00:58:32 +0000
(16:58 -0800)
src/node.js
patch
|
blob
|
history
diff --git
a/src/node.js
b/src/node.js
index a6788b380f1a6d59f88f620ca3999760a8fca010..04513fadbdfa5328be773967c73eb174f1729b1a 100644
(file)
--- a/
src/node.js
+++ b/
src/node.js
@@
-349,7
+349,7
@@
}
if (r) {
- throw errnoException(
'kill', errno
);
+ throw errnoException(
errno, 'kill'
);
}
};
};