summaryrefslogtreecommitdiff
path: root/libs/evoral
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-23 03:32:54 +0000
committerDavid Robillard <d@drobilla.net>2009-10-23 03:32:54 +0000
commit7524b90985a01c71a9a21334ba9a8b0f6fa8c023 (patch)
treeec9c12a45bc8b93f35932ee529c506298185b364 /libs/evoral
parent03b0d3f328196c46985a6e56057d1fcfd8b0fe7c (diff)
Fix compilation with DEBUG_SEQUENCE on.
git-svn-id: svn://localhost/ardour2/branches/3.0@5883 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/evoral')
-rw-r--r--libs/evoral/src/Sequence.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/evoral/src/Sequence.cpp b/libs/evoral/src/Sequence.cpp
index 65e3fcc634..636816eb69 100644
--- a/libs/evoral/src/Sequence.cpp
+++ b/libs/evoral/src/Sequence.cpp
@@ -391,7 +391,7 @@ Sequence<Time>::Sequence(const TypeMap& type_map)
, _lowest_note(127)
, _highest_note(0)
{
- DUMP(format("Sequence (size %1%) constructed: %2%\n") % size % this);
+ DUMP(format("Sequence constructed: %1%\n") % this);
assert(_end_iter._is_end);
assert( ! _end_iter._lock);
}
@@ -664,7 +664,7 @@ Sequence<Time>::append_note_off_unlocked(uint8_t chan, Time time, uint8_t note_n
assert(time >= note->time());
note->set_length(time - note->time());
_write_notes[chan].erase(n);
- DUMP(format("resolved note, length: %1%\n") % note.length());
+ DUMP(format("resolved note, length: %1%\n") % note->length());
resolved = true;
break;
}