diff --git a/src/filesystem/implementation.js b/src/filesystem/implementation.js index 4b44f18..c691d67 100644 --- a/src/filesystem/implementation.js +++ b/src/filesystem/implementation.js @@ -536,7 +536,7 @@ function remove_directory(context, path, callback) { function open_file(context, path, flags, mode, callback) { if (typeof mode === 'function'){ callback = mode; - mode = null + mode = null; } path = normalize(path); var name = basename(path);