General cleanup, no functional changes

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX
2023-06-15 16:42:45 +02:00
parent 3710dda839
commit 0d7954cf2a
4 changed files with 20 additions and 26 deletions
+1 -3
View File
@@ -66,10 +66,8 @@ static const void* extension_data(const char* uri)
static const LV2_State_Interface state = {NAM::Plugin::save, NAM::Plugin::restore};
static const LV2_Worker_Interface worker = { NAM::Plugin::work, NAM::Plugin::work_response, NULL };
if (!strcmp(uri, LV2_STATE__interface)) {
if (!strcmp(uri, LV2_STATE__interface))
return &state;
}
if (!strcmp(uri, LV2_WORKER__interface))
return &worker;