From 3971dcfe10b94e901a224b5328a9dafd1e2ecc08 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 31 Jul 2019 17:11:37 -0400 Subject: Use system rustfmt instead of fixed binary (#2701) --- cli/dispatch_minimal.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'cli/dispatch_minimal.rs') 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, }; -- cgit v1.2.3