Skip to content

Commit

Permalink
Add missing semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriksm committed Aug 3, 2017
1 parent 9b7d852 commit cc90f23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var getLocalIp = function(iface, callback) {
var error = util.format('No address found on %s', iface);
if (!callback) {
if (!returnVal) {
throw new Error(error)
throw new Error(error);
}
return returnVal;
}
Expand Down

0 comments on commit cc90f23

Please sign in to comment.