diff options
Diffstat (limited to 'src/query.rs')
-rw-r--r-- | src/query.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/query.rs b/src/query.rs index bc1d02e..d7574e8 100644 --- a/src/query.rs +++ b/src/query.rs @@ -48,7 +48,7 @@ mod inner { ProcessNetlinkError(#[source] std::io::Error), #[error("Custom error when customizing the query")] - InitError(#[from] Box<dyn std::error::Error + 'static>), + InitError(#[from] Box<dyn std::error::Error + Send + 'static>), #[error("Couldn't allocate a netlink object, out of memory ?")] NetlinkAllocationFailed, |