mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-27 17:40:49 +00:00
* macro.c (macro_expand_body): Don't prepend macro number with zeroes.
This commit is contained in:
@@ -700,7 +700,7 @@ macro_expand_body (in, out, formals, formal_hash, comment_char, locals)
|
||||
|
||||
char buffer[10];
|
||||
src++;
|
||||
sprintf (buffer, "%05d", macro_number);
|
||||
sprintf (buffer, "%d", macro_number);
|
||||
sb_add_string (out, buffer);
|
||||
}
|
||||
else if (in->ptr[src] == '&')
|
||||
|
||||
Reference in New Issue
Block a user