mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
Fix warnings.
git-svn-id: svn://localhost/ardour2/branches/3.0@4653 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
77a71ac3e0
commit
caf103c0af
2 changed files with 2 additions and 2 deletions
|
|
@ -135,7 +135,7 @@ FD_MidiPort::do_slow_write (byte *msg, unsigned int msglen)
|
||||||
}
|
}
|
||||||
|
|
||||||
bytes_written++;
|
bytes_written++;
|
||||||
for (i = 0; i < slowdown * 10000; i++);
|
for (i = 0; i < slowdown * 10000; i++) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -122,7 +122,7 @@ class Parser : public sigc::trackable {
|
||||||
const byte *mtc_current() const { return _mtc_time; }
|
const byte *mtc_current() const { return _mtc_time; }
|
||||||
bool mtc_locked() const { return _mtc_locked; }
|
bool mtc_locked() const { return _mtc_locked; }
|
||||||
|
|
||||||
const nframes_t get_midi_clock_timestamp() const { return _midi_clock_timestamp; }
|
nframes_t get_midi_clock_timestamp() const { return _midi_clock_timestamp; }
|
||||||
void set_midi_clock_timestamp(const nframes_t timestamp) { _midi_clock_timestamp = timestamp; }
|
void set_midi_clock_timestamp(const nframes_t timestamp) { _midi_clock_timestamp = timestamp; }
|
||||||
|
|
||||||
sigc::signal<void,MTC_Status> mtc_status;
|
sigc::signal<void,MTC_Status> mtc_status;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue