summaryrefslogtreecommitdiff
path: root/libs/ardour/midi_port.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-10-23 05:11:10 +0200
committerRobin Gareus <robin@gareus.org>2014-10-23 05:31:40 +0200
commit730e09ce65860d951d0edd9b5471278125915f0a (patch)
tree1f56e3208541994dc5e0aff55e789b233676b50e /libs/ardour/midi_port.cc
parentca48fffd72df21d7298bf00d1e73b1381d0ec0e3 (diff)
another round of compiler warning fixes
Diffstat (limited to 'libs/ardour/midi_port.cc')
-rw-r--r--libs/ardour/midi_port.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/midi_port.cc b/libs/ardour/midi_port.cc
index 381441a8d6..82dabc4cba 100644
--- a/libs/ardour/midi_port.cc
+++ b/libs/ardour/midi_port.cc
@@ -208,7 +208,7 @@ MidiPort::flush_buffers (pframes_t nframes)
cerr << "drop flushed event on the floor, time " << ev.time()
<< " too early for " << _global_port_buffer_offset
<< " + " << _port_buffer_offset;
- for (int xx = 0; xx < ev.size(); ++xx) {
+ for (size_t xx = 0; xx < ev.size(); ++xx) {
cerr << ' ' << hex << (int) ev.buffer()[xx];
}
cerr << dec << endl;