* include/grub/file.h (grub_file_filter_id): Set

GRUB_FILE_FILTER_LZOPIO as GRUB_FILE_FILTER_COMPRESSION_LAST.
This commit is contained in:
Szymon Janc 2011-08-22 09:18:22 +02:00
parent 90b0a05579
commit 1f0e4eed6b
2 changed files with 6 additions and 1 deletions

View file

@ -59,7 +59,7 @@ typedef enum grub_file_filter_id
GRUB_FILE_FILTER_LZOPIO,
GRUB_FILE_FILTER_MAX,
GRUB_FILE_FILTER_COMPRESSION_FIRST = GRUB_FILE_FILTER_GZIO,
GRUB_FILE_FILTER_COMPRESSION_LAST = GRUB_FILE_FILTER_XZIO,
GRUB_FILE_FILTER_COMPRESSION_LAST = GRUB_FILE_FILTER_LZOPIO,
} grub_file_filter_id_t;
typedef grub_file_t (*grub_file_filter_t) (grub_file_t in);