From 34603e586fc7fca3bb8e630be26e42350f758291 Mon Sep 17 00:00:00 2001 From: hyd-dev Date: Mon, 14 Jun 2021 23:38:15 +0800 Subject: [PATCH] Add whitespace --- src/shims/posix/foreign_items.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shims/posix/foreign_items.rs b/src/shims/posix/foreign_items.rs index 2b8ea78bf3f1..ac26b39757a1 100644 --- a/src/shims/posix/foreign_items.rs +++ b/src/shims/posix/foreign_items.rs @@ -61,7 +61,7 @@ fn emulate_foreign_item_by_name( } "fcntl" => { // `fcntl` is variadic. The argument count is checked based on the first argument - // in`this.fcntl()`, so we do not use `check_shim` here. + // in `this.fcntl()`, so we do not use `check_shim` here. this.check_abi_and_shim_symbol_clash(abi, Abi::C { unwind: false }, link_name_sym)?; let result = this.fcntl(args)?; this.write_scalar(Scalar::from_i32(result), dest)?;