code cleanup
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-12-22 11:53:29 +09:00
parent 2243a1357d
commit 5f91536a38
5 changed files with 37 additions and 57 deletions

View File

@ -745,7 +745,7 @@ hcl_oop_t hcl_shallowcopy (hcl_t* hcl, hcl_oop_t oop)
total_bytes = HCL_SIZEOF(hcl_obj_t) + hcl_getobjpayloadbytes(hcl, oop);
hcl_pushvolat (hcl, &oop);
z = (hcl_oop_t)hcl_allocbytes (hcl, total_bytes);
z = (hcl_oop_t)hcl_allocbytes(hcl, total_bytes);
hcl_popvolat(hcl);
HCL_MEMCPY (z, oop, total_bytes);