From bce8e1595ab30c828254038523e1e25c9fd9445f Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 4 Jun 2008 16:09:58 -0700 Subject: [PATCH] pxelinux: add colon to label by itself Newer versions of NASM warn about a label on a line by itself (because it could have been a typoed opcode.) Add a colon. --- core/pxelinux.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/pxelinux.asm b/core/pxelinux.asm index ce3250b..fccf82f 100644 --- a/core/pxelinux.asm +++ b/core/pxelinux.asm @@ -1552,7 +1552,7 @@ is_gpxe: jmp .again section .data -gpxe_warning_msg +gpxe_warning_msg: db 'URL syntax, but gPXE extensions not detected, ' db 'trying plain TFTP...', CR, LF, 0 HasGPXE db -1 ; Unknown -- 2.7.4