summaryrefslogtreecommitdiff
path: root/audio/fluidsynth/files/patch-src__drivers__fluid_alsa.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/fluidsynth/files/patch-src__drivers__fluid_alsa.c')
-rw-r--r--audio/fluidsynth/files/patch-src__drivers__fluid_alsa.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/audio/fluidsynth/files/patch-src__drivers__fluid_alsa.c b/audio/fluidsynth/files/patch-src__drivers__fluid_alsa.c
deleted file mode 100644
index 26d07b59f84a..000000000000
--- a/audio/fluidsynth/files/patch-src__drivers__fluid_alsa.c
+++ /dev/null
@@ -1,17 +0,0 @@
---- src/drivers/fluid_alsa.c 2012-08-16 00:01:13.000000000 -0400
-+++ src/drivers/fluid_alsa.c 2014-12-20 12:59:44.000000000 -0500
-@@ -348,5 +348,4 @@
- snd_pcm_wait(pcm, 1);
- break;
-- case -EPIPE:
- case -EBADFD:
- if (snd_pcm_prepare(pcm) != 0) {
-@@ -355,5 +354,8 @@
- }
- break;
-+ case -EPIPE:
-+#if EPIPE != ESTRPIPE
- case -ESTRPIPE:
-+#endif
- if ((snd_pcm_resume(pcm) != 0) && (snd_pcm_prepare(pcm) != 0)) {
- FLUID_LOG(FLUID_ERR, "Failed to resume the audio device");