Browse Source

Fix typo

Signed-off-by: falkTX <falktx@gmail.com>
pull/811/head
falkTX 7 years ago
parent
commit
09beb090ed
Signed by: falkTX <falktx@gmail.com> GPG Key ID: 2D3445A829213837
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      source/utils/CarlaLv2Utils.hpp

+ 2
- 2
source/utils/CarlaLv2Utils.hpp View File

@@ -2147,7 +2147,7 @@ const LV2_RDF_Descriptor* lv2_rdf_new(const LV2_URI uri, const bool loadPresets)
else if (std::strcmp(unitUnit, LV2_UNITS__semitone12TET) == 0)
rdfPort->Unit.Unit = LV2_PORT_UNIT_SEMITONE;
else
carla_stderr("lv2_rdf_new(\"%s\") - got unknown unit unit '%s'", uri, unitUnit);
carla_stderr("lv2_rdf_new(\"%s\") - got unknown unit '%s'", uri, unitUnit);
}
}

@@ -2383,7 +2383,7 @@ const LV2_RDF_Descriptor* lv2_rdf_new(const LV2_URI uri, const bool loadPresets)
else if (std::strcmp(unitUnit, LV2_UNITS__semitone12TET) == 0)
rdfParam->Unit.Unit = LV2_PORT_UNIT_SEMITONE;
else
carla_stderr("lv2_rdf_new(\"%s\") - got unknown unit unit '%s'", uri, unitUnit);
carla_stderr("lv2_rdf_new(\"%s\") - got unknown unit '%s'", uri, unitUnit);
}
}



Loading…
Cancel
Save