diff options
author | David Robillard <d@drobilla.net> | 2025-02-10 15:27:55 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-02-10 15:47:54 -0500 |
commit | 4285fab0c0b14cbbcf9ddbe29d274c0c55a04edd (patch) | |
tree | bbb72e2cf7df6072f4fed15b140a0e6c5b8af7a5 /include/lv2/atom/forge.h | |
parent | 3e1e609d89fb1954bd497ae8021a3b6c0aad31f6 (diff) | |
download | lv2-4285fab0c0b14cbbcf9ddbe29d274c0c55a04edd.tar.xz |
Diffstat (limited to 'include/lv2/atom/forge.h')
-rw-r--r-- | include/lv2/atom/forge.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lv2/atom/forge.h b/include/lv2/atom/forge.h index b9dff85..58b7512 100644 --- a/include/lv2/atom/forge.h +++ b/include/lv2/atom/forge.h @@ -492,7 +492,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}}; const LV2_Atom_Forge_Ref out = lv2_atom_forge_write(forge, &a, sizeof(a)); |