tape: make sure there is a filemark at the end of the tape

This commit is contained in:
Dietmar Maurer
2021-04-06 12:17:59 +02:00
parent 8b2c6f5dbc
commit 7b11a8098d
7 changed files with 75 additions and 20 deletions

View File

@ -551,7 +551,7 @@ fn move_to_eom(mut param: Value) -> Result<(), Error> {
let mut drive = open_drive(&config, &drive)?;
drive.move_to_eom()?;
drive.move_to_eom(false)?;
Ok(())
}