Skip to content

Commit

Permalink
command-executer: Fix order to Rust imports
Browse files Browse the repository at this point in the history
Previous changes overlooked the fact that imports have to be sorted
alphabetically.

Signed-off-by: Costin Lupu <[email protected]>
  • Loading branch information
clupuishere committed Dec 20, 2023
1 parent 04a4657 commit 1da029e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/command_executer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use protocol_helpers::{recv_loop, recv_u64, send_loop, send_u64};

use nix::sys::socket::listen as listen_vsock;
use nix::sys::socket::{accept, bind, connect, shutdown, socket};
use nix::sys::socket::{AddressFamily, Shutdown, VsockAddr, SockFlag, SockType};
use nix::sys::socket::{AddressFamily, Shutdown, SockFlag, SockType, VsockAddr};
use nix::unistd::close;
use num_derive::FromPrimitive;
use num_traits::FromPrimitive;
Expand Down

0 comments on commit 1da029e

Please sign in to comment.