diff options
Diffstat (limited to 'media-radio/svxlink/files/svxlink-15.11-gcc72.patch')
-rw-r--r-- | media-radio/svxlink/files/svxlink-15.11-gcc72.patch | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/media-radio/svxlink/files/svxlink-15.11-gcc72.patch b/media-radio/svxlink/files/svxlink-15.11-gcc72.patch deleted file mode 100644 index a55894c62f34..000000000000 --- a/media-radio/svxlink/files/svxlink-15.11-gcc72.patch +++ /dev/null @@ -1,12 +0,0 @@ -# backported fix for newer compilers ---- src/async/audio/AsyncAudioDeviceAlsa.cpp.orig 2017-12-27 16:32:27.185098621 +0000 -+++ src/async/audio/AsyncAudioDeviceAlsa.cpp 2017-12-27 16:33:33.468067578 +0000 -@@ -548,7 +548,7 @@ - return false; - } - -- if (::abs(real_rate - sample_rate) > 100) -+ if (::abs(static_cast<int>(real_rate) - sample_rate) > 100) - { - cerr << "*** ERROR: The sample rate could not be set to " - << sample_rate << "Hz for ALSA device \"" << dev_name << "\". " |