1
0
mirror of https://github.com/janet-lang/janet synced 2025-11-09 03:53:06 +00:00

Prepare for 1.17.1 release.

This commit is contained in:
Calvin Rose
2021-08-29 11:29:09 -05:00
parent b903433284
commit e1c4fc29de
5 changed files with 10 additions and 5 deletions

View File

@@ -1267,7 +1267,7 @@ static const uint8_t *unmarshal_one(
data = unmarshal_one_def(st, data, &def, flags + 1);
if (def->environments_length != len) {
janet_panicf("invalid function - env count does not match def (%d != %d)",
len, def->environments_length);
len, def->environments_length);
}
func->def = def;
for (int32_t i = 0; i < def->environments_length; i++) {