Skip to content

Commit

Permalink
Place the actual version string in .data16, rather than just the
Browse files Browse the repository at this point in the history
pointer to it.
  • Loading branch information
Michael Brown committed Jun 30, 2007
1 parent 4472e22 commit e1646b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arch/i386/image/multiboot.c
Expand Up @@ -199,7 +199,7 @@ static struct multiboot_info __data16 ( mbinfo );
#define mbinfo __use_data16 ( mbinfo )

/** The multiboot bootloader name */
static const char * __data16 ( mb_bootloader_name ) = "gPXE " VERSION;
static char __data16_array ( mb_bootloader_name, [] ) = "gPXE " VERSION;
#define mb_bootloader_name __use_data16 ( mb_bootloader_name )

/** The multiboot memory map */
Expand Down

0 comments on commit e1646b4

Please sign in to comment.