13
0

Fix warnings.

git-svn-id: svn://localhost/ardour2/branches/3.0@4653 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2009-02-25 17:39:19 +00:00
parent 77a71ac3e0
commit caf103c0af
2 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ FD_MidiPort::do_slow_write (byte *msg, unsigned int msglen)
}
bytes_written++;
for (i = 0; i < slowdown * 10000; i++);
for (i = 0; i < slowdown * 10000; i++) {}
}

View File

@ -122,7 +122,7 @@ class Parser : public sigc::trackable {
const byte *mtc_current() const { return _mtc_time; }
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; }
sigc::signal<void,MTC_Status> mtc_status;