Fix clippy error

Bug: b:223840386
Test: tools/clippy
Change-Id: I450e5c75150c186e4f3c82b84ed471d08a81c938
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3527438
Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
Tested-by: kokoro <noreply+kokoro@google.com>
Commit-Queue: Vikram Auradkar <auradkar@google.com>
This commit is contained in:
Vikram Auradkar 2022-03-15 23:43:19 +00:00 committed by Commit Bot
parent e6bc05ef81
commit 585337ceae
2 changed files with 2 additions and 1 deletions

View file

@ -79,7 +79,7 @@ pub use descriptor_reflection::{
SerializeDescriptors,
};
pub use poll_token_derive::*;
pub use sys_util_core::{Error, Result, *};
pub use sys_util_core::{generate_scoped_event, Error, Result, *};
pub use crate::file_traits::{
AsRawFds, FileAllocate, FileGetLen, FileReadWriteAtVolatile, FileReadWriteVolatile, FileSetLen,

View file

@ -23,3 +23,4 @@ pub use crate::errno::{errno_result, Error, Result};
pub use crate::external_mapping::Error as ExternalMappingError;
pub use crate::external_mapping::Result as ExternalMappingResult;
pub use crate::external_mapping::*;
pub use crate::scoped_event_macro::*;