소스 검색

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

pointer to it.
tags/v0.9.3
Michael Brown 17 년 전
부모
커밋
e1646b4080
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/arch/i386/image/multiboot.c

+ 1
- 1
src/arch/i386/image/multiboot.c 파일 보기

@@ -199,7 +199,7 @@ static struct multiboot_info __data16 ( mbinfo );
199 199
 #define mbinfo __use_data16 ( mbinfo )
200 200
 
201 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 203
 #define mb_bootloader_name __use_data16 ( mb_bootloader_name )
204 204
 
205 205
 /** The multiboot memory map */

Loading…
취소
저장