diff options
author | David Robillard <d@drobilla.net> | 2024-10-06 13:57:47 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-10-06 13:57:47 -0400 |
commit | 5309d0fcc9ef1a01ce9d0e3631ae45eb86a28740 (patch) | |
tree | d4b73d4903b3a196a365968a1ab3d3a9ed9849f4 /plugins/eg-scope.lv2/examploscope.c | |
parent | 447b44c67368a4e1686d1db2688e5624a63cd0f4 (diff) | |
download | lv2-5309d0fcc9ef1a01ce9d0e3631ae45eb86a28740.tar.xz |
Add missing const qualifiers
Diffstat (limited to 'plugins/eg-scope.lv2/examploscope.c')
-rw-r--r-- | plugins/eg-scope.lv2/examploscope.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/eg-scope.lv2/examploscope.c b/plugins/eg-scope.lv2/examploscope.c index e3bb53b..918fca2 100644 --- a/plugins/eg-scope.lv2/examploscope.c +++ b/plugins/eg-scope.lv2/examploscope.c @@ -169,11 +169,11 @@ connect_port(LV2_Handle handle, uint32_t port, void* data) http://lv2plug.in/ns/ext/atom#Float[Float]. */ static void -tx_rawaudio(LV2_Atom_Forge* forge, - ScoLV2URIs* uris, - const int32_t channel, - const size_t n_samples, - const float* data) +tx_rawaudio(LV2_Atom_Forge* forge, + const ScoLV2URIs* uris, + const int32_t channel, + const size_t n_samples, + const float* data) { LV2_Atom_Forge_Frame frame; |