* 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

@ -39,8 +39,8 @@ struct grub_file
/* The file size. */
grub_off_t size;
/* If file is not easly seekable. Should be set by underlying layer. */
int not_easly_seekable;
/* If file is not easily seekable. Should be set by underlying layer. */
int not_easily_seekable;
/* Filesystem-specific data. */
void *data;
@ -123,7 +123,7 @@ grub_file_tell (const grub_file_t file)
static inline int
grub_file_seekable (const grub_file_t file)
{
return !file->not_easly_seekable;
return !file->not_easily_seekable;
}
#endif /* ! GRUB_FILE_HEADER */