forgot a semicolon

This commit is contained in:
Stephen Ward 2018-10-09 20:28:46 -04:00
parent 7a6a4160e6
commit e11c101600
1 changed files with 1 additions and 1 deletions

View File

@ -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);