mirror of
https://github.com/mirror/tinycc.git
synced 2026-09-03 12:12:46 +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'
51 KiB
51 KiB