2008-07-01 Pavel Roskin <proski@gnu.org>
* include/multiboot2.h (struct multiboot_tag_module): Use char, not unsigned char. This fixes warnings and is consistent with other tags.
This commit is contained in:
parent
bf1835b13c
commit
d89b76343e
2 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
||||||
2008-07-01 Pavel Roskin <proski@gnu.org>
|
2008-07-01 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
* include/multiboot2.h (struct multiboot_tag_module): Use char,
|
||||||
|
not unsigned char. This fixes warnings and is consistent with
|
||||||
|
other tags.
|
||||||
|
|
||||||
* disk/fs_uuid.c (search_fs_uuid): Correctly increment count.
|
* disk/fs_uuid.c (search_fs_uuid): Correctly increment count.
|
||||||
|
|
||||||
* normal/parser.y: Define YYENABLE_NLS as 0 to fix warnings.
|
* normal/parser.y: Define YYENABLE_NLS as 0 to fix warnings.
|
||||||
|
|
|
@ -77,8 +77,8 @@ struct multiboot_tag_module
|
||||||
struct multiboot_tag_header header;
|
struct multiboot_tag_header header;
|
||||||
multiboot_word addr;
|
multiboot_word addr;
|
||||||
multiboot_word size;
|
multiboot_word size;
|
||||||
unsigned char type[36];
|
char type[36];
|
||||||
unsigned char cmdline[1];
|
char cmdline[1];
|
||||||
};
|
};
|
||||||
|
|
||||||
#define MULTIBOOT2_TAG_MEMORY 4
|
#define MULTIBOOT2_TAG_MEMORY 4
|
||||||
|
|
Loading…
Reference in a new issue