* include/grub/fs.h (grub_dirhook_info): Use unsigned for 1-bit fields.
This commit is contained in:
parent
2a961775e6
commit
461121ffb3
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2011-04-06 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* include/grub/fs.h (grub_dirhook_info): Use unsigned for 1-bit fields.
|
||||||
|
|
||||||
2011-04-06 Vladimir Serbinenko <phcoder@gmail.com>
|
2011-04-06 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* util/grub.d/00_header.in: Don't use LANG unless unifont is available.
|
* util/grub.d/00_header.in: Don't use LANG unless unifont is available.
|
||||||
|
|
|
@ -31,9 +31,9 @@ struct grub_file;
|
||||||
|
|
||||||
struct grub_dirhook_info
|
struct grub_dirhook_info
|
||||||
{
|
{
|
||||||
int dir:1;
|
unsigned dir:1;
|
||||||
int mtimeset:1;
|
unsigned mtimeset:1;
|
||||||
int case_insensitive:1;
|
unsigned case_insensitive:1;
|
||||||
grub_int32_t mtime;
|
grub_int32_t mtime;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue