From 0ec21209dc4e564ba67566dc64fc9963055c384e Mon Sep 17 00:00:00 2001 From: SASANO Takayoshi Date: Sun, 4 Jun 2023 10:24:58 +0900 Subject: [PATCH] ESTRPIPE not defined, use ESPIPE (not EPIPE) Closes: https://github.com/alsa-project/alsa-plugins/pull/48 Signed-off-by: SASANO Takayoshi Signed-off-by: Jaroslav Kysela --- a52/pcm_a52.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/a52/pcm_a52.c b/a52/pcm_a52.c index 2bebccc..43a35e7 100644 --- a/a52/pcm_a52.c +++ b/a52/pcm_a52.c @@ -29,7 +29,7 @@ #include #ifndef ESTRPIPE -#define ESTRPIPE EPIPE +#define ESTRPIPE ESPIPE #endif /* some compatibility wrappers */ -- 2.47.3