summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/session_process.cc2
-rw-r--r--libs/ardour/session_time.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/session_process.cc b/libs/ardour/session_process.cc
index 1055a7c504..4876dc7931 100644
--- a/libs/ardour/session_process.cc
+++ b/libs/ardour/session_process.cc
@@ -86,7 +86,7 @@ Session::process (pframes_t nframes)
timecode_time(transport_frames, transport_timecode);
tick (transport_frames, transport_bbt, transport_timecode); /* EMIT SIGNAL */
} catch (...) {
- warning << _("Missed MIDI Clock tick due to problems with tempo map") << endmsg;
+ /* don't bother with a message */
}
SendFeedback (); /* EMIT SIGNAL */
diff --git a/libs/ardour/session_time.cc b/libs/ardour/session_time.cc
index 205e2a0ba4..eef05e879a 100644
--- a/libs/ardour/session_time.cc
+++ b/libs/ardour/session_time.cc
@@ -502,7 +502,7 @@ Session::jack_timebase_callback (jack_transport_state_t /*state*/,
pos->valid = jack_position_bits_t (pos->valid | JackPositionBBT);
} catch (...) {
- warning << _("failed to set tempo map information for JACK due to issues with tempo map") << endmsg;
+ /* no message */
}
}