MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix len typo in main

+2 -2
+2 -2
src/main.c
··· 81 81 }; 82 82 83 83 static void parse_ant_debug(const char *flag) { 84 - if (strncmp(flag, "dump-crprintf=", 13) == 0) { 85 - const char *mode = flag + 13; 84 + if (strncmp(flag, "dump-crprintf=", 14) == 0) { 85 + const char *mode = flag + 14; 86 86 if (strcmp(mode, "bytecode") == 0 || strcmp(mode, "all") == 0) crprintf_debug = true; 87 87 if (strcmp(mode, "hex") == 0 || strcmp(mode, "all") == 0) crprintf_debug_hex = true; 88 88 }