mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-02-05 16:51:27 +08:00
output: aout -- Use nasm_x_space helpers
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
373583c6c8
commit
94b4a2c819
@ -294,10 +294,7 @@ static void aout_deflabel(char *name, int32_t segment, int64_t offset,
|
||||
expr *e;
|
||||
char *p = special;
|
||||
|
||||
while (*p && !nasm_isspace(*p))
|
||||
p++;
|
||||
while (*p && nasm_isspace(*p))
|
||||
p++;
|
||||
p = nasm_skip_spaces(nasm_skip_word(p));
|
||||
stdscan_reset();
|
||||
stdscan_set(p);
|
||||
tokval.t_type = TOKEN_INVALID;
|
||||
|
Loading…
Reference in New Issue
Block a user