fix broken format strings

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
Fabian Grünbichler 2021-11-29 14:16:18 +01:00
parent b25e07b3ce
commit f66d814792
2 changed files with 5 additions and 5 deletions

View File

@ -194,7 +194,7 @@ impl BackupEnvironment {
if size < data.chunk_size {
data.small_chunk_count += 1;
if data.small_chunk_count > 1 {
bail!("fixed writer '{}' - detected multiple end chunks (chunk size too small)");
bail!("fixed writer '{}' - detected multiple end chunks (chunk size too small)", wid);
}
}

View File

@ -257,7 +257,7 @@ pub fn media_changer(
None => Ok(None),
}
}
_ => bail!("unknown drive type '{}' - internal error"),
ty => bail!("unknown drive type '{}' - internal error", ty),
}
}
None => {
@ -305,7 +305,7 @@ pub fn open_drive(
let handle = open_lto_tape_drive(&tape)?;
Ok(Box::new(handle))
}
_ => bail!("unknown drive type '{}' - internal error"),
ty => bail!("unknown drive type '{}' - internal error", ty),
}
}
None => {
@ -495,7 +495,7 @@ pub fn request_and_load_media(
update_and_log_request_error(&mut last_error, request_error)?;
}
}
_ => bail!("drive type '{}' not implemented!"),
ty => bail!("drive type '{}' not implemented!", ty),
}
}
None => {
@ -584,7 +584,7 @@ fn tape_device_path(
"lto" => {
LtoTapeDrive::deserialize(config)?.path
}
_ => bail!("unknown drive type '{}' - internal error"),
ty => bail!("unknown drive type '{}' - internal error", ty),
};
Ok(path)
}