mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-19 13:16:27 +01:00
clang knows that we cannot use printf() to print Evoral::Event::time() ...
(why doesn't gcc?)
This commit is contained in:
parent
8c23d6955d
commit
a7535ae8aa
1 changed files with 1 additions and 1 deletions
|
|
@ -406,7 +406,7 @@ SMFSource::append_event_beats (const Glib::Threads::Mutex::Lock& lock,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 1
|
#if 0
|
||||||
printf("SMFSource: %s - append_event_beats ID = %d time = %lf, size = %u, data = ",
|
printf("SMFSource: %s - append_event_beats ID = %d time = %lf, size = %u, data = ",
|
||||||
name().c_str(), ev.id(), ev.time(), ev.size());
|
name().c_str(), ev.id(), ev.time(), ev.size());
|
||||||
for (size_t i = 0; i < ev.size(); ++i) printf("%X ", ev.buffer()[i]); printf("\n");
|
for (size_t i = 0; i < ev.size(); ++i) printf("%X ", ev.buffer()[i]); printf("\n");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue