summaryrefslogtreecommitdiff
path: root/ldlinux.asm
diff options
context:
space:
mode:
authorhpa <hpa>2002-06-10 18:32:42 +0000
committerhpa <hpa>2002-06-10 18:32:42 +0000
commit59db3d71fd90aac45d70b537f2aea557c3eac135 (patch)
tree7a1f2bde3f5a3b3f1c97cd440fdf11a4792099a3 /ldlinux.asm
parent5e5fa8df698bf56701eaa652866adca832503136 (diff)
downloadsyslinux-59db3d71fd90aac45d70b537f2aea557c3eac135.tar.gz
Remove all explicit "near" declarations, except the ones that are
absolutely necessary.
Diffstat (limited to 'ldlinux.asm')
-rw-r--r--ldlinux.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/ldlinux.asm b/ldlinux.asm
index 955665a3..bf8ebbc2 100644
--- a/ldlinux.asm
+++ b/ldlinux.asm
@@ -1024,7 +1024,7 @@ mkkeymap: stosb
;
mov di,syslinux_cfg
call open
- jz near no_config_file
+ jz no_config_file
;
; Now we have the config file open
;
@@ -1037,7 +1037,7 @@ check_for_key:
cmp word [ForcePrompt],byte 0 ; Force prompt?
jnz enter_command
test byte [KbdFlags],5Bh ; Caps, Scroll, Shift, Alt
- jz near auto_boot ; If neither, default boot
+ jz auto_boot ; If neither, default boot
enter_command:
mov si,boot_prompt
@@ -1214,7 +1214,7 @@ clin_opt_ptr: dec si ; Point to first nonblank
vk_check: pusha
mov cx,11
repe cmpsb ; Is this it?
- je near vk_found
+ je vk_found
popa
add si,vk_size
loop vk_check