summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-06-24 18:06:09 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-06-24 18:06:09 -0700
commitb078aa315d7d9ae23b914190f263c01295c3c70a (patch)
treea174b504752dbdf963d0f1c33b67f28378cdf1b8
parent2eab1b7a15377f4bb0a5a3537fd882d32e39e06f (diff)
downloadsyslinux-b078aa315d7d9ae23b914190f263c01295c3c70a.tar.gz
extlinux: Fix comment
"Bytes left" should be "bytes read"
-rw-r--r--core/extlinux.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/extlinux.asm b/core/extlinux.asm
index b0a82407..02c2e229 100644
--- a/core/extlinux.asm
+++ b/core/extlinux.asm
@@ -1505,7 +1505,7 @@ getfssec:
shl ecx,SECTOR_SHIFT
sub [si+file_bytesleft],ecx
jnbe .noteof ; CF=0 in this case
- add ecx,[si+file_bytesleft] ; Actual number of bytes left
+ add ecx,[si+file_bytesleft] ; Actual number of bytes read
call close_file
stc ; We hit EOF
.noteof: