Browse Source

Place the actual version string in .data16, rather than just the

pointer to it.
tags/v0.9.3
Michael Brown 17 years ago
parent
commit
e1646b4080
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/arch/i386/image/multiboot.c

+ 1
- 1
src/arch/i386/image/multiboot.c View File

199
 #define mbinfo __use_data16 ( mbinfo )
199
 #define mbinfo __use_data16 ( mbinfo )
200
 
200
 
201
 /** The multiboot bootloader name */
201
 /** The multiboot bootloader name */
202
-static const char * __data16 ( mb_bootloader_name ) = "gPXE " VERSION;
202
+static char __data16_array ( mb_bootloader_name, [] ) = "gPXE " VERSION;
203
 #define mb_bootloader_name __use_data16 ( mb_bootloader_name )
203
 #define mb_bootloader_name __use_data16 ( mb_bootloader_name )
204
 
204
 
205
 /** The multiboot memory map */
205
 /** The multiboot memory map */

Loading…
Cancel
Save