Update cJSONw.cpp

This commit is contained in:
blueloveTH 2024-05-05 11:38:11 +08:00
parent eae0aa6c8b
commit 5725d66113

View File

@ -118,7 +118,7 @@ void add_module_cjson(VM* vm){
});
vm->bind_func(mod, "dumps", 1, [](VM* vm, ArgsView args) {
return vm->py_json(args[0]);
return VAR(vm->py_json(args[0]));
});
}