diff options
Diffstat (limited to 'cli/dispatch_minimal.rs')
-rw-r--r-- | cli/dispatch_minimal.rs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cli/dispatch_minimal.rs b/cli/dispatch_minimal.rs index 9d82595d1..dd6a962e2 100644 --- a/cli/dispatch_minimal.rs +++ b/cli/dispatch_minimal.rs @@ -137,7 +137,9 @@ mod ops { debug!("read rid={}", rid); let zero_copy = match zero_copy { None => { - return Box::new(futures::future::err(deno_error::no_buffer_specified())) + return Box::new( + futures::future::err(deno_error::no_buffer_specified()), + ) } Some(buf) => buf, }; @@ -155,7 +157,9 @@ mod ops { debug!("write rid={}", rid); let zero_copy = match zero_copy { None => { - return Box::new(futures::future::err(deno_error::no_buffer_specified())) + return Box::new( + futures::future::err(deno_error::no_buffer_specified()), + ) } Some(buf) => buf, }; |