* config/tc-z8k.c (build_bytes): Correct order of memset args.
This commit is contained in:
parent
36b08f12d1
commit
25d3fb587f
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-07-16 Moritz Jodeit <moritz@jodeit.org>
|
||||
|
||||
* config/tc-z8k.c (build_bytes): Correct order of memset args.
|
||||
|
||||
2002-07-16 Nick Clifton <nickc@cambridge.redhat.com>
|
||||
|
||||
* NEWS: Add 'Changes in 2.13'.
|
||||
|
|
|
@ -1005,7 +1005,7 @@ build_bytes (this_try, operand)
|
|||
frag_wane (frag_now);
|
||||
frag_new (0);
|
||||
|
||||
memset (buffer, 20, 0);
|
||||
memset (buffer, 0, sizeof (buffer));
|
||||
class_ptr = this_try->byte_info;
|
||||
|
||||
for (nibble = 0; (c = *class_ptr++); nibble++)
|
||||
|
|
Loading…
Add table
Reference in a new issue