summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/OutputPort.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/OutputPort.cpp')
-rw-r--r--src/libs/engine/OutputPort.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/engine/OutputPort.cpp b/src/libs/engine/OutputPort.cpp
index 0e688818..ce945f09 100644
--- a/src/libs/engine/OutputPort.cpp
+++ b/src/libs/engine/OutputPort.cpp
@@ -24,7 +24,7 @@ namespace Ingen {
void
OutputPort::pre_process(SampleCount nframes, FrameTime start, FrameTime end)
{
- for (size_t i=0; i < _poly; ++i)
+ for (uint32_t i=0; i < _poly; ++i)
_buffers.at(i)->prepare_write(nframes);
}
@@ -32,7 +32,7 @@ OutputPort::pre_process(SampleCount nframes, FrameTime start, FrameTime end)
void
OutputPort::post_process(SampleCount nframes, FrameTime start, FrameTime end)
{
- for (size_t i=0; i < _poly; ++i)
+ for (uint32_t i=0; i < _poly; ++i)
_buffers.at(i)->prepare_read(nframes);
}