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
|
@ -77,8 +77,8 @@ struct multiboot_tag_module
|
|||
struct multiboot_tag_header header;
|
||||
multiboot_word addr;
|
||||
multiboot_word size;
|
||||
unsigned char type[36];
|
||||
unsigned char cmdline[1];
|
||||
char type[36];
|
||||
char cmdline[1];
|
||||
};
|
||||
|
||||
#define MULTIBOOT2_TAG_MEMORY 4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue