aboutsummaryrefslogtreecommitdiff
path: root/lib/freelist.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/freelist.js')
-rw-r--r--lib/freelist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/freelist.js b/lib/freelist.js
index a09fb4b21e..67da85a791 100644
--- a/lib/freelist.js
+++ b/lib/freelist.js
@@ -4,7 +4,7 @@ exports.FreeList = function(name, max, constructor) {
this.constructor = constructor;
this.max = max;
this.list = [];
-}
+};
exports.FreeList.prototype.alloc = function () {