mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 08:14:58 +01:00
avoid llabs ambiguity
(old gcc has a built-in)
This commit is contained in:
parent
723f9fb950
commit
2524115992
5 changed files with 5 additions and 5 deletions
|
|
@ -770,7 +770,7 @@ sample_to_timecode (
|
|||
|
||||
if (!use_offset) {
|
||||
timecode.negative = (sample < 0);
|
||||
offset_sample = llabs(sample);
|
||||
offset_sample = ::llabs(sample);
|
||||
} else {
|
||||
if (offset_is_negative) {
|
||||
offset_sample = sample + offset_samples;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue