aboutsummaryrefslogtreecommitdiff
path: root/gas/macro.c
diff options
context:
space:
mode:
Diffstat (limited to 'gas/macro.c')
-rw-r--r--gas/macro.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gas/macro.c b/gas/macro.c
index c5b9b68..74a17ff 100644
--- a/gas/macro.c
+++ b/gas/macro.c
@@ -320,29 +320,29 @@ getstring (idx, in, acc)
if (macro_alternate && in->ptr[idx] == '!')
{
- idx++;
+ idx ++;
sb_add_char (acc, in->ptr[idx]);
- idx++;
+ idx ++;
}
else if (escaped && in->ptr[idx] == tchar)
{
sb_add_char (acc, tchar);
- idx++;
+ idx ++;
}
else
{
if (in->ptr[idx] == tchar)
{
- idx++;
+ idx ++;
if (idx >= in->len || in->ptr[idx] != tchar)
break;
}
sb_add_char (acc, in->ptr[idx]);
- idx++;
+ idx ++;
}
}
}