* include/grub/file.h (not_easly_seekable): Rename to ...

(not_easily_seekable): ... this.  Update all users.
This commit is contained in:
Colin Watson 2011-02-08 13:21:13 +00:00
parent 800f188183
commit 7e735e4349
6 changed files with 12 additions and 7 deletions

View file

@ -74,7 +74,7 @@ grub_bufio_open (grub_file_t io, int size)
file->data = bufio;
file->read_hook = 0;
file->fs = &grub_bufio_fs;
file->not_easly_seekable = io->not_easly_seekable;
file->not_easily_seekable = io->not_easily_seekable;
return file;
}