diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-16 13:29:02 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-16 13:29:02 -0500 |
| commit | f156f915f480b46f112e4137f42d55b88c297436 (patch) | |
| tree | cb9d30e28ea35e0a7dfe60f51ba019da2f27bc32 /compile.c | |
| parent | 317b8f53193e5ec14c92e229c89bc84ca32b7810 (diff) | |
Moving builtin strings over to cords
Diffstat (limited to 'compile.c')
| -rw-r--r-- | compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -115,7 +115,7 @@ CORD compile(env_t *env, ast_t *ast) CORD code = "\""; CORD_pos i; CORD_FOR(i, literal) { - int c = CORD_pos_fetch(i); + char c = CORD_pos_fetch(i); switch (c) { case '\\': code = CORD_cat(code, "\\\\"); break; case '"': code = CORD_cat(code, "\\\""); break; |
