Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

Commit

Permalink
er should be err
Browse files Browse the repository at this point in the history
  • Loading branch information
gdw2 committed Feb 17, 2014
1 parent 37149f3 commit 2d701a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uid-number.js
Expand Up @@ -33,7 +33,7 @@ function uidNumber (uid, gid, cb) {
child_process.execFile( process.execPath
, [getter, uid, gid]
, function (code, out, err) {
if (er) return cb(new Error("could not get uid/gid\n" + err))
if (err) return cb(new Error("could not get uid/gid\n" + err))
try {
out = JSON.parse(out+"")
} catch (ex) {
Expand Down

0 comments on commit 2d701a8

Please sign in to comment.