1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-19 01:37:40 +00:00

Initial rewrite of compiler

This commit is contained in:
bakpakin
2017-12-14 19:33:45 -05:00
parent a2ee6ffe5c
commit 1293d2e301
6 changed files with 569 additions and 78 deletions

View File

@@ -630,7 +630,7 @@ const uint8_t *dst_formatc(const char *format, ...) {
}
case 'q':
{
const uint8_t *str = dst_to_string(va_arg(args, DstValue));
const uint8_t *str = va_arg(args, const uint8_t *);
dst_escape_string_b(bufp, str);
break;
}