mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
Fix warning.
git-svn-id: svn://localhost/ardour2/branches/3.0@10825 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
7fcb672943
commit
42d7089c0b
1 changed files with 1 additions and 1 deletions
|
|
@ -1808,7 +1808,7 @@ AudioClock::timecode_validate_edit (const string& str)
|
|||
return false;
|
||||
}
|
||||
|
||||
if (TC.frames > (long)rint(_session->timecode_frames_per_second()) - 1) {
|
||||
if (TC.frames > (uint32_t) rint (_session->timecode_frames_per_second()) - 1) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue