diff options
Diffstat (limited to 'src/arch/x86/walkcbfs.S')
-rw-r--r-- | src/arch/x86/walkcbfs.S | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/arch/x86/walkcbfs.S b/src/arch/x86/walkcbfs.S index bd71f19158..ded65587ec 100644 --- a/src/arch/x86/walkcbfs.S +++ b/src/arch/x86/walkcbfs.S @@ -71,7 +71,9 @@ walker: /* LARCHIVE header found */ mov %ebx, %edi - add $CBFS_FILE_STRUCTSIZE, %edi /* edi = address of first byte after struct cbfs_file */ + add $CBFS_FILE_STRUCTSIZE, %edi /* edi = address of first byte after + * struct cbfs_file + */ mov %eax, %ecx repe cmpsb /* zero flag set if strings are equal */ @@ -112,7 +114,9 @@ check_for_exit: add $1, %ecx cmp %ecx, %ebx - /* if bootblockstart >= addr (==we're still in the data area) , jump back */ + /* if bootblockstart >= addr (==we're still in the data area), + * jump back + */ jbe walker out: |