tape: return current_file_number as u64

This commit is contained in:
Dietmar Maurer
2020-12-18 07:44:50 +01:00
parent 3e2984bcb9
commit 26aa9aca40
3 changed files with 5 additions and 5 deletions

View File

@ -49,7 +49,7 @@ pub trait TapeDriver {
fn move_to_eom(&mut self) -> Result<(), Error>;
/// Current file number
fn current_file_number(&mut self) -> Result<usize, Error>;
fn current_file_number(&mut self) -> Result<u64, Error>;
/// Completely erase the media
fn erase_media(&mut self, fast: bool) -> Result<(), Error>;