diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-03-03 17:30:23 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-03-03 17:30:23 -0500 |
| commit | 9512eb74d2bb2511b50104b354488555fe846c58 (patch) | |
| tree | 81bf487cf71028a8dc440b9884e0fdbd3307157b | |
| parent | 94ab8c0ac62b8389bea61766455c1bbc6c34b692 (diff) | |
Bugfix
| -rw-r--r-- | compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -452,7 +452,7 @@ CORD compile(env_t *env, ast_t *ast) if (isprint(c)) code = CORD_cat_char(code, c); else - CORD_sprintf(&code, "%r\\x%02X", c); + CORD_sprintf(&code, "%r\\x%02X", code, c); break; } } |
