diff options
Diffstat (limited to 'src/util/error.rs')
-rw-r--r-- | src/util/error.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/error.rs b/src/util/error.rs index 32dccbe6..2b862269 100644 --- a/src/util/error.rs +++ b/src/util/error.rs @@ -93,12 +93,12 @@ impl From<sled::transaction::TransactionError<Error>> for Error { impl<T> From<tokio::sync::watch::error::SendError<T>> for Error { fn from(_e: tokio::sync::watch::error::SendError<T>) -> Error { - Error::Message(format!("Watch send error")) + Error::Message("Watch send error".to_string()) } } impl<T> From<tokio::sync::mpsc::error::SendError<T>> for Error { fn from(_e: tokio::sync::mpsc::error::SendError<T>) -> Error { - Error::Message(format!("MPSC send error")) + Error::Message("MPSC send error".to_string()) } } |