From 519b468995bcea43d06a082cc629a06ed9dc9282 Mon Sep 17 00:00:00 2001 From: Bennjamin Blast Date: Tue, 7 Apr 2020 21:23:22 -0400 Subject: [PATCH] fix: remove incorrect flush parameter --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 997053b..1b7b961 100644 --- a/index.js +++ b/index.js @@ -512,8 +512,8 @@ class Fuse extends Nanoresource { }) } - _op_flush (signal, path, datasync, fd) { - this.ops.flush(path, datasync, fd, err => { + _op_flush (signal, path, fd) { + this.ops.flush(path, fd, err => { return signal(err) }) }