virtio-devices: vhost_user: Fix a typo for error reporting

Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
Bo Chen 2022-08-12 13:39:23 -07:00 committed by Rob Bradford
parent df5b803a63
commit 9591e225e6

View File

@ -216,7 +216,7 @@ impl<S: VhostUserMasterReqHandler> VhostUserEpollHandler<S> {
.map_err(|e| {
EpollHelperError::IoError(std::io::Error::new(
std::io::ErrorKind::Other,
format!("failed connecting vhost-user backend{:?}", e),
format!("failed connecting vhost-user backend {:?}", e),
))
})?;