* config/tc-w65.c (md_section_align): Fix typo.
(md_parse_option): Return 0, not 1.
This commit is contained in:
parent
2846975ad0
commit
a2199cc1ea
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-08-26 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* config/tc-w65.c (md_section_align): Fix typo.
|
||||
(md_parse_option): Return 0, not 1.
|
||||
|
||||
2002-08-22 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* doc/as.texinfo (Section): Note that if '@' is a comment
|
||||
|
|
|
@ -846,7 +846,7 @@ md_parse_option (c, a)
|
|||
int c;
|
||||
char *a;
|
||||
{
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -980,7 +980,7 @@ md_section_align (seg, size)
|
|||
void
|
||||
md_apply_fix3 (fixP, valP, seg)
|
||||
fixS *fixP;
|
||||
vauleT * valP;
|
||||
valueT * valP;
|
||||
segT seg ATTRIBUTE_UNUSED;
|
||||
{
|
||||
long val = * (long *) valP;
|
||||
|
|
Loading…
Reference in a new issue