allow for % in assembler strings
This commit is contained in:
parent
5d01fbf6b8
commit
a082cf03dc
|
@ -40,6 +40,8 @@ char *str;
|
||||||
str = str + 2;
|
str = str + 2;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case '%': *b_ptr++ = *str;
|
||||||
|
/* fall through */
|
||||||
default : *b_ptr++ = *str++;
|
default : *b_ptr++ = *str++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue