Skip to content

Commit dc78182

Browse files
committed
futio: Fix missing paren allowed only by a rust nightly?!?
1 parent a441fd0 commit dc78182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

body-image-futio/src/futio_tests/server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ fn echo_server_uni(mmap: bool) -> (impl Future<Item=(), Error=()>, String) {
293293
if mmap { bi.mem_map()?; }
294294
Ok(Response::builder()
295295
.status(200)
296-
.body(debugv!("echo server", UniBodyImage::new(bi, &tune)))?
296+
.body(debugv!("echo server", UniBodyImage::new(bi, &tune)))?)
297297
})
298298
});
299299
one_service!(svc)

0 commit comments

Comments
 (0)