diff options
Diffstat (limited to 'lv2/atom')
-rw-r--r-- | lv2/atom/forge.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lv2/atom/forge.h b/lv2/atom/forge.h index 5cf3551..d17643f 100644 --- a/lv2/atom/forge.h +++ b/lv2/atom/forge.h @@ -497,7 +497,7 @@ lv2_atom_forge_vector(LV2_Atom_Forge* forge, const void* elems) { const LV2_Atom_Vector a = { - {(uint32_t)(sizeof(LV2_Atom_Vector_Body) + n_elems * child_size), + {(uint32_t)sizeof(LV2_Atom_Vector_Body) + n_elems * child_size, forge->Vector}, {child_size, child_type}}; LV2_Atom_Forge_Ref out = lv2_atom_forge_write(forge, &a, sizeof(a)); |