Browse Source

Fix a compiler warning

Signed-off-by: falkTX <falktx@falktx.com>
fix-audiofile-buffering
falkTX 1 year ago
parent
commit
c62b26eecb
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      source/backend/plugin/CarlaPluginLV2.cpp

+ 2
- 2
source/backend/plugin/CarlaPluginLV2.cpp View File

@@ -2503,7 +2503,7 @@ public:

for (uint32_t i=0; i < count; ++i)
{
const uint32_t& type(evIns.getAt(i, 0x0));
const uint32_t type = evIns.getAt(i, 0x0);

if (type == CARLA_EVENT_DATA_ATOM)
{
@@ -2535,7 +2535,7 @@ public:

for (uint32_t i=0; i < count; ++i)
{
const uint32_t& type(evOuts.getAt(i, 0x0));
const uint32_t type = evOuts.getAt(i, 0x0);

if (type == CARLA_EVENT_DATA_ATOM)
{


Loading…
Cancel
Save