summaryrefslogtreecommitdiff
path: root/cli/dispatch_minimal.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-07-31 17:11:37 -0400
committerGitHub <noreply@github.com>2019-07-31 17:11:37 -0400
commit3971dcfe10b94e901a224b5328a9dafd1e2ecc08 (patch)
treee347644a90094774e56e9315119c31594ca60796 /cli/dispatch_minimal.rs
parentb3541c38f5672ffb4a29d66dca19d88b9ecae478 (diff)
Use system rustfmt instead of fixed binary (#2701)
Diffstat (limited to 'cli/dispatch_minimal.rs')
-rw-r--r--cli/dispatch_minimal.rs8
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,
};