diff options
Diffstat (limited to 'audio/ecasound/files/patch-ac')
-rw-r--r-- | audio/ecasound/files/patch-ac | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/audio/ecasound/files/patch-ac b/audio/ecasound/files/patch-ac deleted file mode 100644 index 20f936e65a29..000000000000 --- a/audio/ecasound/files/patch-ac +++ /dev/null @@ -1,16 +0,0 @@ ---- libecasound/eca-chainsetup-position.cpp.orig Fri Oct 6 18:08:00 2000 -+++ libecasound/eca-chainsetup-position.cpp Wed Dec 20 00:42:14 2000 -@@ -43,11 +43,11 @@ - } - - long int ECA_CHAINSETUP_POSITION::length_in_seconds(void) const { -- return(static_cast<double>(length_rep) / srate_rep); -+ return(static_cast<long int>(length_rep) / srate_rep); - } - - long int ECA_CHAINSETUP_POSITION::position_in_seconds(void) const { -- return(static_cast<double>(curpos_rep) / srate_rep); -+ return(static_cast<long int>(curpos_rep) / srate_rep); - } - - double ECA_CHAINSETUP_POSITION::length_in_seconds_exact(void) const { |