diff options
author | hpa <hpa> | 2004-12-19 07:23:45 +0000 |
---|---|---|
committer | hpa <hpa> | 2004-12-19 07:23:45 +0000 |
commit | ad10c6bb4ed8830cd0071fda0ee037cf600a7f49 (patch) | |
tree | 9b2d09d5d59bddb36e56fac46653f881b8c465bd /parseconfig.inc | |
parent | 67af2ad7bead9bd53a15cd069217a28f02337811 (diff) | |
download | syslinux-ad10c6bb4ed8830cd0071fda0ee037cf600a7f49.tar.gz |
Fix some additional common code issues; fix dangling ES in pxelinux
Diffstat (limited to 'parseconfig.inc')
-rw-r--r-- | parseconfig.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parseconfig.inc b/parseconfig.inc index 0a427696..064dc7f4 100644 --- a/parseconfig.inc +++ b/parseconfig.inc @@ -240,7 +240,7 @@ pc_fkey: push ax ; pc_label: call commit_vk ; Commit any current vkernel mov di,VKernelBuf ; Erase the vkernelbuf for better compression - mov cx,vk_size >> 1 + mov cx,(vk_size >> 1) xor ax,ax rep stosw call pc_getline |