This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Cadence
mirror of
https://github.com/falkTX/Cadence
Watch
1
Star
0
Fork
0
Code
Releases
3
Activity
Browse Source
Carla: Fix some compiler warnings
tags/v0.9.0
falkTX
12 years ago
parent
e1d628e0ec
commit
21925eec61
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
c++/carla-includes/lv2/event-helpers.h
+1
-1
c++/carla-plugin/carla_bridge.cpp
+ 1
- 1
c++/carla-includes/lv2/event-helpers.h
View File
@@ -148,7 +148,7 @@ lv2_event_get(LV2_Event_Iterator* iter,
uint8_t** data)
{
if (!lv2_event_is_valid(iter)) {
return
false
;
return
nullptr
;
}
LV2_Event* const ev = (LV2_Event*)(
+ 1
- 1
c++/carla-plugin/carla_bridge.cpp
View File
@@ -994,7 +994,7 @@ CarlaPlugin* CarlaPlugin::newBridge(const initializer& init, BinaryType btype, P
if (! extra)
{
init.engine->setLastError("Bridge not possible, bridge-binary not found");
return
false
;
return
nullptr
;
}
short id = init.engine->getNewPluginId();
Write
Preview
Loading…
Cancel
Save