diff options
Diffstat (limited to 'src/shared/Builder.cpp')
-rw-r--r-- | src/shared/Builder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/Builder.cpp b/src/shared/Builder.cpp index 48950e2e..28833fc9 100644 --- a/src/shared/Builder.cpp +++ b/src/shared/Builder.cpp @@ -66,7 +66,7 @@ Builder::build(const Raul::Path& prefix, SharedPtr<const GraphObject> object) SharedPtr<const Port> port = PtrCast<const Port>(object); if (port) { Raul::Path path = prefix.base() + port->path().substr(1); - _interface.new_port(path, port->index(), port->type().uri(), !port->is_input()); + _interface.new_port(path, port->type().uri(), port->index(), !port->is_input()); build_object(prefix, object); return; } |