mirror of
https://github.com/mirror/tinycc.git
synced 2026-08-30 11:57:51 +08:00
A problem was in TOK_ASMDIR_text:
- sprintf(sname, ".%s", get_tok_str(tok1, NULL));
+ sprintf(sname, "%s", get_tok_str(tok1, NULL));
When tok1 is '.text', then sname is '..text'
31 KiB
31 KiB