Fixed some typos in the "large alignment" support.
This commit is contained in:
parent
3adeb0f907
commit
f8be35b41e
3 changed files with 4 additions and 4 deletions
|
@ -226,7 +226,7 @@ Here is a description of all the command line options:
|
||||||
<tag><tt>--large-alignment</tt></tag>
|
<tag><tt>--large-alignment</tt></tag>
|
||||||
|
|
||||||
Disable warnings about a large combined alignment. See the discussion of the
|
Disable warnings about a large combined alignment. See the discussion of the
|
||||||
<tt><ref id=".ALIGN" name=".ALIGN"></tt> directive for futher information.
|
<tt><ref id=".ALIGN" name=".ALIGN"></tt> directive for further information.
|
||||||
|
|
||||||
|
|
||||||
<label id="option--list-bytes">
|
<label id="option--list-bytes">
|
||||||
|
|
|
@ -303,7 +303,7 @@ Here is a description of all of the command-line options:
|
||||||
<tag><tt>--large-alignment</tt></tag>
|
<tag><tt>--large-alignment</tt></tag>
|
||||||
|
|
||||||
Disable warnings about a large combined alignment. See the discussion of the
|
Disable warnings about a large combined alignment. See the discussion of the
|
||||||
<tt/.ALIGN/ directive in the ca65 Users Guide for futher information.
|
<tt/.ALIGN/ directive in the ca65 Users Guide for further information.
|
||||||
|
|
||||||
|
|
||||||
<tag><tt>--lib file</tt></tag>
|
<tag><tt>--lib file</tt></tag>
|
||||||
|
|
|
@ -306,7 +306,7 @@ void SegAlign (unsigned long Alignment, int FillVal)
|
||||||
ActiveSeg->Align = CombinedAlignment;
|
ActiveSeg->Align = CombinedAlignment;
|
||||||
|
|
||||||
/* Output a warning for larger alignments if not suppressed */
|
/* Output a warning for larger alignments if not suppressed */
|
||||||
if (CombinedAlignment > LARGE_ALIGNMENT && !LargeAlignment) {
|
if (CombinedAlignment >= LARGE_ALIGNMENT && !LargeAlignment) {
|
||||||
Warning (0, "Combined alignment is suspiciously large (%lu)",
|
Warning (0, "Combined alignment is suspiciously large (%lu)",
|
||||||
CombinedAlignment);
|
CombinedAlignment);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue