Skip to content

Commit

Permalink
Little bug fix: comparing integers
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyAkentiev authored and indexzero committed Nov 4, 2014
1 parent c29de4b commit 4adf834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/forever.js
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ forever.findByPid = function (pid, processes) {
return !processes
? null
: processes.filter(function (p) {
return p.pid === pid;
return p.pid == pid;
});
};

Expand Down

0 comments on commit 4adf834

Please sign in to comment.