From: Alan Modra Date: Mon, 26 Aug 2002 08:57:17 +0000 (+0000) Subject: * config/tc-w65.c (md_section_align): Fix typo. X-Git-Tag: binutils-2_13_1~132 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=901964b07681e207889c622b48ae43fcda5e677b;p=thirdparty%2Fbinutils-gdb.git * config/tc-w65.c (md_section_align): Fix typo. (md_parse_option): Return 0, not 1. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 4dfac9f5c21..be248a0c77f 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2002-08-26 Alan Modra + + * config/tc-w65.c (md_section_align): Fix typo. + (md_parse_option): Return 0, not 1. + 2002-08-20 Maciej W. Rozycki * config/tc-mips.c (macro): Handle a register plus a 16-bit diff --git a/gas/config/tc-w65.c b/gas/config/tc-w65.c index 690bf506518..9ab85e880cf 100644 --- a/gas/config/tc-w65.c +++ b/gas/config/tc-w65.c @@ -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;